乐升平
乐升平
刚试了下,没问题啊。你能再描述更详细些吗
很快会有新版本,这次优化了非常多的内容,你说的问题不会再有了
可以,有方法的,设置alpha值为0即可 乐升平 许思必客行 中华人民共和国 手机:13879857085 邮箱:[email protected] 电话:000-00000000 地址:上海市浦东新区居里路99号 在2019年07月29日 11:09,xhjss 写道: ActionView 背景是否可以不透明 — You are receiving this because you are subscribed to this thread. Reply to this email directly,...
哈哈,是的,我之所以这么干,就是想对外看起来简洁,别人导入我一个类就可以用了,代码多是对内,我自己看的懂就行了。一切以用户第一 在 2019-05-19 03:47:48,"夕若" 写道: — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.
问题已修复,请升级到3.0.4版本,谢谢。 乐升平 许思必客行 中华人民共和国 手机:13879857085 邮箱:[email protected] 电话:000-00000000 地址:上海市浦东新区居里路99号 在2019年06月1日 04:23,a13377766460 写道: /** 是否单击背景退出对话框,默认为YES */ @Property(nonatomic, assign) BOOL tapBackgroundViewDismiss; 这个属性根本没有用啊 设置了都是无效的 什么时候麻烦完善下 — You are receiving this because you are subscribed...
666 | | 乐升平 | | 邮箱:[email protected] | 签名由 网易邮箱大师 定制 在2019年06月04日 22:19,a13377766460 写道: 我已经自己修复了,在2170行代码处方法加了个判断 (void)tapOverlayView { SPAlertController *alertController = (SPAlertController *)self.presentedViewController; if (alertController.tapBackgroundViewDismiss) {//修复BUG [alertController dismissViewControllerAnimated:YES completion:^{}]; } }...
是的,花了我巨大的功夫,主要就是一个类代码行数太多,本来也想抽成好几个类,但是不想别人用起来太麻烦,一样对外简单一些,对内复杂点没事。感谢你的使用。 | | 乐升平 | | 邮箱:[email protected] | 签名由 网易邮箱大师 定制 在2019年06月04日 22:24,a13377766460 写道: 用着还不错比 2.x版本的时候好很多额 — You are receiving this because you commented. Reply to this email directly, view...
好的,我试试 乐升平 许思必客行 中华人民共和国 手机:13879857085 邮箱:[email protected] 电话:000-00000000 地址:上海市浦东新区居里路99号 在2019年08月19日 09:28,JeanKit 写道: delay个0.5秒之后present就可以,但是系统的UIAlertViewController则没这个bug,本想用这个库替换整个项目里面的原生alert,但是很多地方都在didLoad里面做的弹窗。。。 — You are receiving this because you are subscribed to this thread. Reply to this email directly, view...
你好,我试了是能弹出来的,你能把你写的给我看下吗,跟我的有什么不同之处 乐升平 许思必客行 中华人民共和国 手机:13879857085 邮箱:[email protected] 电话:000-00000000 地址:上海市浦东新区居里路99号 在2019年08月19日 09:29,JeanKit 写道: 弹不出来的原因是,SPAlertViewController的view的frame是{0,0,0,0} — You are receiving this because you are subscribed to this thread. Reply to this email directly, view...
我复制你的代码,还是弹出来了,唯一不同的就是设置view的size,因为我没有写分类去直接设置view的size,我设置的是frame,不过这不会有影响。你说的第二个问题,我稍后给你回复,先把你的第一个问题解决 乐升平 许思必客行 中华人民共和国 手机:13879857085 邮箱:[email protected] 电话:000-00000000 地址:上海市浦东新区居里路99号 在2019年08月20日 14:06,JeanKit 写道: - (void)viewDidLoad { [superviewDidLoad]; SPAlertController *sc = [SPAlertController alertControllerWithCustomAlertView:({ UIView *view = UIView.new; view.size = (CGSize){200,200}; view.backgroundColor = UIColor.whiteColor;...