首页 > 代码库 > iOS8.0以上presentViewController不出来

iOS8.0以上presentViewController不出来

解决办法:
因为在ipad上面(确切的说是在iOS8上面的ipad),根据错误提示,在呈现窗口之前,他会当做POPover窗口呈现,所以需要一个坐标宿主窗口,所以在这之前添加一句
activityViewController.popoverPresentationController.sourceView = sender;就可以了
也可以采用(addView的方式)

iOS8.0以上presentViewController不出来