作为一个已经有了一部分经验的iOS开发人员,对于苹果公司的一些新动向,当然要密切关注了,从2014年发布swift语言以来,虽然才仅仅两
年,但是这门语言的强大,已经吸引了越来越多的开发人员,我也是最近才开始学习swift语言,只是希望将自己的学习做一些纪录。
相信所以做iPhone手机开发的程序员,都曾经使用过UIAlertView这个控件。但是在iOS9中UIAlertView这个控件被UIAlertController所取代,虽然UIAlertView暂时还没有被完全废弃,但是很明显这不过是早晚的事情。
swift中的UIAlertController和OC中并没有太大的区别,用法也非常的简单。
letalertController=UIAlertController(title:"通知",message:"确定还是取消",preferredStyle:UIAlertControllerStyle.Alert)// 这里因为控件都不存在改变的可能,所以一律使用let类型
letalertView1=UIAlertAction(title:"确定",style:UIAlertActionStyle.Default) { (UIAlertAction) ->Voidin
print("确定按钮点击事件")
}
letalertView2=UIAlertAction(title:"取消",style:UIAlertActionStyle.Default) { (UIAlertAction) ->Voidin
print("取消按钮点击事件")
}
letalertView3=UIAlertAction(title:"下次吧",style:UIAlertActionStyle.Default) { (UIAlertAction) ->Voidin
print("下次吧按钮点击事件")
}
alertController.addAction(alertView1)
alertController.addAction(alertView2)
alertController.addAction(alertView3)// 当添加的UIAlertAction超过两个的时候,会自动变成纵向分布
self.presentViewController(alertController,animated:true,completion:nil)