Dropbox could not dismiss modal view controller

天大地大妈咪最大 提交于 2019-12-02 14:54:58

问题


I have integrated dropbox in my application,After entering the username and password,when i try to dismiss the dropbox view controller it is not dismissing. i am using xcode4.2 with ios sdk5.Please help me to fix this issue.


回答1:


in ios5 you have to use presentingViewController instead of parentViewController.

e.g.:

if (self.parentViewController) {
    [self.parentViewController dismissModalViewControllerAnimated:YES];
} else if ([self respondsToSelector:@selector(presentingViewController)] && self.presentingViewController) {
    [self.presentingViewController dismissModalViewControllerAnimated:YES];
}


来源:https://stackoverflow.com/questions/8166597/dropbox-could-not-dismiss-modal-view-controller

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!