self.alertController=[UIAlertController alertControllerWithTitle:@"请选择\n\n\n\n\n\n\n\n\n\n\n\n\n\n" message:nil preferredStyle:UIAlertControllerStyleActionSheet]; //定义一个AlertAction ,style 选择Destructive 确定按钮,handler中是处理方法         UIAlertAction *d…
1. Important: UIAlertView is deprecated in iOS 8. (Note that UIAlertViewDelegate is also deprecated.) To create and manage alerts in iOS 8 and later, instead use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert. //UIAlertView和UI…
在iOS8之前用UIActionSheet和UIAlertView来提供button选择和提示性信息,比方UIActionSheet能够这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"title,nil时不显示" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"确定" ot…
链接地址:http://blog.csdn.net/nextstudio/article/details/39959895?utm_source=tuicool 1.前言 iOS8新增了UIAlertController来代替UIAlertView.UIActionSheet的使用.本文在不使用UIAlertController的情况下,用最简单的方法让UIAlertView.UIActionSheet兼容iOS8.   2.UIAlertView iOS8下,如果UIAlertView初始化的…
1.前言 在前段时间手机QQ:升级iOS8.3后,发图就崩的情况, 就是因为iOS8更新UIAlertController后,仍然使用UIAlertview导致的 具体原因分析 这个可以看腾讯团队发出来的总结分享. http://bugly.qq.com/blog/?p=135#   在Xcode头文件中苹果也明确给出用UIAlertController替代UIAlertview和UIActionSheet的标识       所以iOS8以后我们还是使用苹果推荐的UIAlertControlle…
本文转载至 http://stackoverflow.com/questions/26460706/uialertcontroller-custom-font-size-color up vote2down votefavorite 3 I am using new UIAlertController for showing alerts. I have this code: // nil titles break alert interface on iOS 8.0, so we'll be…
学习方法 面对有难度的功能,不要忙着拒绝,而是挑战一下,学习更多知识. 尽量独立解决问题,而不是在遇到问题的第一想法是找人. 多学习别人开源的第三方库,能够开源的库一定有值得学习的地方,多去看别的大神的博客. 作为一个程序员,如果你停止了学习,你也必将会被这个团队淘汰. 要把学习的技能当做兴趣,而不是为了挣钱去学习,是为了学习技能而学习. 有给自己定制一个详细的职业规划和人生规划,大到5~10年,小到近3年(并且细化到月)的计划. 不要盲目的面试,要针对即将面试的工作,准备面试. 首先针对一个自…
 本文转载至 http://blog.csdn.net/liuwuguigui/article/details/39494597       IOS8UIAlertViewUIActionSheet iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了-但是也无所谓,有新东西不怕,学会使用了就行.接下来会探讨一下这些个新的Controller. -…
首先storyboard中创建对应按钮并拖线,来演示不同的效果 首先点击了actionSheet按钮效果如图 实现弹框需要遵守设置代理,遵守协议. 效果就是从底部向上弹起来的框框. 通过对按钮的点击输出得出结论,按钮的脚标是从上到下,从0开始. 所以可以通过按钮的脚标来确定点击了那个按钮,然后创建对应的点击事件. 重要的一点是此种方法已经被apple建议不要使用了,并在官方文档中注明了ios8以后废除了这个方法.并且建议使用UIAlertController来代替UIActionSheet 点击…
解决方法:   IOS8以前: UIActionSheet* startsheet = [[UIActionSheet alloc] initWithTitle:title delegate:self cancelButtonTitle:@"确定" destructiveButtonTitle:nil otherButtonTitles:nil, nil]; startsheet.tag = 333; [startsheet addSubview:datePicker]; [start…