AlertController is not in the window hierarchy

前端 未结 8 1739
北荒
北荒 2020-11-29 03:01

I\'ve just created a Single View Application project with ViewController class. I would like to show a UIAlertController from a function which is located inside my own class

8条回答
  •  粉色の甜心
    2020-11-29 03:22

    It helped me to stick a slight delay between the viewDidLoad method and firing the alert method:

       [self performSelector:@selector(checkPhotoPermission) withObject:nil afterDelay:0.1f];
    

提交回复
热议问题