美文网首页
提醒框在 iPad 中的适配

提醒框在 iPad 中的适配

作者: 丨不學無術丨 | 来源:发表于2017-02-08 14:18 被阅读50次

    在将 iPhone 的 App 移植到 iPad 的时候,很容易会遇到,在弹出提醒框(UIAlertController)的时候奔溃;

    主要针对 UIAlertController 的 Style 为 UIAlertControllerStyleActionSheet

    这是因为在 iPad 中,UIAlertController没有容器需要手动添加,需要在每个UIAlertController创建以及弹出的前加入两行代码:

    UIAlertController * alertC  = [UIAlertController alloc];
    
    alertC.popoverPresentationController.sourceView = self.view;
    alertC.popoverPresentationController.sourceRect = CGRectMake(0,0, 30, 30);

    相关文章

      网友评论

          本文标题:提醒框在 iPad 中的适配

          本文链接:https://www.haomeiwen.com/subject/jewvittx.html