Cannot show modal ViewController in iOS7

前端 未结 10 1053
借酒劲吻你
借酒劲吻你 2020-12-06 02:06

I tried to show system defined viewcontrollers (MFMailComposeViewController, TWTweetComposeViewController,etc..) as a modal view.

But these viewcontrollers dosn\'t a

10条回答
  •  悲哀的现实
    2020-12-06 02:15

    In My case, following code will cause the same issue on 64bit machine or simulator. Hope for helping someone met this issue.

    if ([UITableViewCell instancesRespondToSelector:@selector(setSeparatorInset:)]) {
        [[UITableViewCell appearance] setSeparatorInset:UIEdgeInsetsZero];
    }
    

提交回复
热议问题