首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏我杨某人的青春满是悔恨

    在 iPhone 上使用 Popover Segue

    func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle { return UIModalPresentationStyle.None } } 这样就完成了。

    1.6K50发布于 2018-09-10
  • 来自专栏Rindew的iOS技术分享

    使iPhone也可以拥有iPad的pop效果

    animated:YES completion:nil];//present即可 } #pragma mark -- UIPopoverPresentationControllerDelegate -(UIModalPresentationStyle

    1.1K40发布于 2018-06-14
  • 来自专栏iOS逆向与安全

    iOS小技能:查看大图浏览器(图片支持滑动切换)

    article/details/115077471 主要功能:进入查看器之后,可左右滑动查看上/下张,并支持下滑视图退出查看器 在这里插入图片描述 private projects III 转场动画 UIModalPresentationStyle UIModalPresentationOverCurrentContext; self.transitioningDelegate = self; typedef NS_ENUM(NSInteger, UIModalPresentationStyle

    1.6K30编辑于 2022-08-22
  • 来自专栏娱乐心理测试

    IOS13的详细适配

    . */ @property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2

    4K10发布于 2019-10-23
  • 来自专栏一“技”之长

    iOS对UIViewController生命周期和属性方法的解析

    除了跳转的效果,还有一个属性可以设置弹出的controler的填充效果,但是这个属性只在pad上有效,在iphone上无效,都是填充到整个屏幕: @property(nonatomic,assign) UIModalPresentationStyle  modalPresentationStyle NS_AVAILABLE_IOS(3_2); //枚举如下 typedef NS_ENUM(NSInteger, UIModalPresentationStyle

    3.6K20发布于 2018-08-16
  • 来自专栏工程师的分享

    跟iOS UI的捉迷藏,真的能够获取到self.presentingViewController

    我们需要用到一对属性 @property(nonatomic,assign) BOOL definesPresentationContext; @property(nonatomic,assign) UIModalPresentationStyle

    96120编辑于 2022-08-02
  • 来自专栏一“技”之长

    玩转iOS转场动画 原

    是否被取消了 @property(nonatomic, readonly) BOOL transitionWasCancelled; //转场风格 @property(nonatomic, readonly) UIModalPresentationStyle

    1.9K51发布于 2018-08-15
  • 来自专栏移动端开发

    iOS 转场动画探究(一)

    UIModalPresentationFullScreen模式显示presentedController,关于modalPresentationStyle在下面也通过注释说一下: typedef NS_ENUM(NSInteger, UIModalPresentationStyle

    3.2K50发布于 2018-01-15
领券