Delay in presenting a modal view controller

前端 未结 9 1814
星月不相逢
星月不相逢 2020-12-24 10:51

I have a tab bar based app. There are navigation controllers in all 5 tabs with instances of custom view controller setup properly as root view controllers. This loads just

9条回答
  •  天涯浪人
    2020-12-24 11:25

    I have also had this strange delay when presenting from tableView:didSelectRowAtIndexPath: looks like an Apple bug.

    This solution seems to work well though.

    CFRunLoopWakeUp(CFRunLoopGetCurrent()); // Fixes a bug where the main thread may be asleep, especially when using UITableViewCellSelectionStyleNone
    

提交回复
热议问题