說明
- iOS8之后將
UIAlertView廢止
- 在為知筆記上有一份比較完整的說明。
- 這里只摘錄代碼片段
代碼片段及說明
UIAlertController *altertCtrl = [UIAlertController alertControllerWithTitle:@"提示"
message:@"您的手機藍牙未打開,請打開藍牙"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"好"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * _Nonnull action) {
[self.navigationController popViewControllerAnimated:YES];
}];
[altertCtrl addAction:okAction];
[self presentViewController:altertCtrl animated:YES completion:nil];
- 創(chuàng)建 UIAlertController
- 創(chuàng)建按鈕 UIAlertAction,并添加警告按鈕的時間,在handler中做。
- 在UIAlertController中加入UIAlertAction
- 利用presentViewController呈現(xiàn)出來
最后編輯于 :
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。