iPhone - Detect the end of the animation

后端 未结 4 902
走了就别回头了
走了就别回头了 2021-01-21 05:21

How can I detect the end of the animation of a modal view (when I do a dismiss)? (I\'m talking about MFMailComposeViewController which is not created by myself...)

Thank

4条回答
  •  迷失自我
    2021-01-21 06:06

    You can subclass MFMailComposeViewController and overload its -viewDidDisappear:.

    @interface MyCtrler : MFMailComposeViewController
    @end
    @implementation MyCtrler
    -(void)viewDidDisappear:(BOOL)animated {
       [super viewDidDisappear:animated];
       // do anything you like
    }
    @end
    

提交回复
热议问题