码迷,mamicode.com
首页 > 移动开发 > 详细

iOS swift ipad使用系统自带分享 弹框失败没有弹框

时间:2020-06-09 12:42:15      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:自带   ==   rect   分享   exclude   use   ipad   height   perm   

 

是因为iOS13上的不支持适配

let activity = UIActivityViewController(activityItems: [URL(fileURLWithPath: path)], applicationActivities: nil)
        
        activity.excludedActivityTypes = [.print]
        
        //需要做一个 iPhone 和 iPad的判断
        if UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad {
            activity.modalPresentationStyle = .popover
            activity.popoverPresentationController?.sourceView = self.view
            activity.popoverPresentationController?.sourceRect = CGRect(x: Screen.width, y: Screen.height/2, width: 0, height: 0)
            activity.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection(rawValue: 0)
        }
        self.present(activity, animated: true, completion: nil)

 

iOS swift ipad使用系统自带分享 弹框失败没有弹框

标签:自带   ==   rect   分享   exclude   use   ipad   height   perm   

原文地址:https://www.cnblogs.com/xujiahui/p/13071656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!