Present a modal view using fade-in animation

后端 未结 3 834
眼角桃花
眼角桃花 2021-01-31 13:30

I presented a login screen as follows modally. Correct me if I am not right.

   UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@\"Main\" bundle:nil]         


        
3条回答
  •  攒了一身酷
    2021-01-31 14:16

    You have to set prestentation and transition style:

        self.activityAlertVC.modalPresentationStyle = .custom
        self.activityAlertVC.modalTransitionStyle = .crossDissolve
    

提交回复
热议问题