xcode 4 parentViewController bug

来源:互联网 发布:中京域名 编辑:程序博客网 时间:2024/05/18 01:32

1   。[self parentViewController]  返回值 为  nil    修改为       [self presentingViewController]  一直往上找,直到最上层viewController。


2.   [[self parentViewController] dismissModalViewControllerAnimated:YES];  出错,不作用,窗口不消失。

    修改为    [selfdismissModalViewControllerAnimated:YES];