Cannot show modal ViewController in iOS7

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

    Turns out the issue only shows up when customizing UIBarButtons. If we use the following in our 32-bit app running on iPhone 5s, we have the problem:

    [[UIBarButtonItem appearance] setTitlePositionAdjustment:UIOffsetMake(0, 1.0)
                                               forBarMetrics:UIBarMetricsDefault];
    

    Leaving out that line works around the problem. We have filed a radar.

提交回复
热议问题