Cannot show modal ViewController in iOS7

前端 未结 10 1036
借酒劲吻你
借酒劲吻你 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:38

    This post helped me find a solution to a similar issue. But my problem was not related to the tab bar, so I figured I'd share if anyone else comes across this post:

    The mail modal opened when tapping a table cell, but would instantly dismiss. In my case, this code caused the problem:

    [[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setFont:[UIFont systemFontOfSize:17.0]];
    

    I deleted it, and everything works!

提交回复
热议问题