美文网首页
alertController强制横屏显示

alertController强制横屏显示

作者: 崔又淇 | 来源:发表于2018-05-08 18:01 被阅读15次

让alertcontroller可以强制横屏显示的方法,真的,这个方法真的超级厉害的!!!

alert方法

然后在类目中使用runtime添加alert隐藏的方法

UIAlertController+ChangeAlert.h

+ (void)load {

    Method fromMethod =class_getInstanceMethod([self class], @selector(_postWillBeginSystemProvidedDismissalOfAlertController));

    Method toMethod =class_getInstanceMethod([self class], @selector(change));

    method_exchangeImplementations(fromMethod, toMethod);

}

-(void)change {

    self.view.hidden = YES;

    [self change];

}

完成!

相关文章

  • alertController强制横屏显示

    让alertcontroller可以强制横屏显示的方法,真的,这个方法真的超级厉害的!!! 然后在类目中使用run...

  • 播放器页面-横竖屏切换Activity

    尝试写播放器页面 ... 第一步先搞清怎么做横竖屏切换 (1)强制竖屏显示;(2)强制横屏显示;(3)根据重力感应...

  • flutter 强制横屏,控制横竖屏显示

    今天 我们的主题是控制手机横竖屏显示需求很明确,整个app都是竖屏显示,但某一个页面需要横竖屏显示 1.进入app...

  • iOS:强制横屏的坑

    前段时间我们播放器强制横屏,项目设置允许竖屏,在手机不锁屏状态下,手机横屏会导致播放器强制横屏的时候会导致横屏失败...

  • Android9.0 MTK 平板横屏方案修改(强制app横屏

    文章较长建议先收藏再看 拆解步骤 1、app 强制横屏显示,无视 android:screenOrientatio...

  • iOS强制横屏

    iOS强制横屏

  • 强制横屏方法

    强制横屏: 方法一: 关于强制横屏看了很多文章,首先第一个方法是invocation,这个方法可以实现横屏效果,但...

  • 强制横屏

    转载自 :http://blog.csdn.net/zhaotao0617/article/details/525...

  • 强制横屏

    -(void)landscapeAndPortraitChange{UIInterfaceOrientation ...

  • 强制横屏

    1、AppDelegate里设置属性 @property(nonatomic,assign)BOOLallowLa...

网友评论

      本文标题:alertController强制横屏显示

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