dismissing modalViewController moves main view buttons around iphone

前端 未结 1 1400
故里飘歌
故里飘歌 2021-01-22 19:21

I\'m using presentModalViewController and dismissModalViewController with animation set to YES in both cases. This works fine.

Aft

相关标签:
1条回答
  • 2021-01-22 19:43

    Is this app full screen?

    I have seen some strange issues regarding apps that hide the status bar. You may try re-hiding the status bar in viewWillAppear or viewWillDisappear on the modal.

    [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
    
    0 讨论(0)
提交回复
热议问题