UIAlertView: ? ? UIActionSheet:
UIAlertController: ?9.0之后使用
是什么:
在應(yīng)用中,出現(xiàn)的提示框一般都是由UIAlertView或者UIAlertController編寫,功能相同
怎么用:
使用UIAlertController共需要三步
*? 1.實(shí)例化alert:alertControllerWithTitle
*? 2.實(shí)例化按鈕:actionWithTitle
*? 3.顯示alertController:presentViewController
方法一
在viewDidLoad方法中,調(diào)用
把presentModalViewController放到viewDidAppear或者viewWillAppear中
方法二:
回到主線程
waitUntilDone:YES:必須執(zhí)行完主線程才能往下走
NO:不需要執(zhí)行完主線程矛双,可以先往下走
方法三:
通過Btn點(diǎn)擊事件彈出
方法三:創(chuàng)建動作表單
方法四: