IOS開發之UIAlertView與UIAlertController的詳盡用法說明

来源:http://www.cnblogs.com/Jepson1218/archive/2016/02/02/5178740.html
-Advertisement-
Play Games

本文將從四個方面對IOS開發中UIAlertView與UIAlertController的用法進行講解: 一、UIAlertView與UIAlertController是什麼東東? 二、我們為什麼要用UIAlertView或UIAlertController? 三、如何使用UIAlertView和U


本文將從四個方面對IOS開發中UIAlertView與UIAlertController的用法進行講解:


一、UIAlertView與UIAlertController是什麼東東?

二、我們為什麼要用UIAlertView或UIAlertController?

三、如何使用UIAlertView和UIAlertController?

四、閱讀提醒。


一、UIAlertView與UIAlertController是什麼東東?

 一句話,在所有移動應用中,出現的提示窗一般都由UIAlertView或UIAlertController來編寫的,兩者功能相同。

 


二、我們為什麼要用UIAlertView或UIAlertController? 

  好的人機交互,可以提高用戶體驗,操作系統的人機交互功能是決定電腦系統“友善性”的一個重要因素。人機交互功能主要靠可輸入輸出的外部設備和相應的軟體來完成。在傳統時期,可供人機交互使用的設備主要有鍵盤顯示、滑鼠、各種模式識別設備等。與這些設備相應的軟體就是操作系統提供人機交互功能的部分。早期的人機交互設施主要是鍵盤和顯示器。操作員通過鍵盤打入命令,操作系統接到命令後立即執行並將結果通過顯示器顯示。打入的命令可以有不同方式,但每一條命令的解釋是清楚的,唯一的。如今,在移動端我們所進行的所有操作均是在可觸摸屏幕上進行的,為了更好的進行人機交互,工程師便把操作信息或提示信息顯示到屏幕上,用戶根據自身判斷來決定所需點擊的按鈕。一句話,就是利用人機交互更好的提升用戶的使用體驗和產品設計的質量。

 


三、如何使用UIAlertView和UIAlertController?

 1、UIAlertView的使用方法:

    // Newly initialized alert view.
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Edit" message:@"Please Modify the Info" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Sure", @"Other", nil];
    
    // 為下麵修改數據用
    // This property is inherited from the UIView, You can use this property to distinguish when a AlertView has multiple view
    alertView.tag = indexPath.row;
    
    // Adds a button to the receiver with the given title.
    [alertView addButtonWithTitle:@"addBtn"];
    
    /**
     UIAlertViewStyle = 以下4種
     UIAlertViewStyleDefault,
     UIAlertViewStyleSecureTextInput,       //密碼輸入框風格
     UIAlertViewStylePlainTextInput,        //普通輸入框風格
     UIAlertViewStyleLoginAndPasswordInput  //賬號密碼框風格
     */
    // An alert that allows the user to enter text. Available in iOS 5.0 and later.
    alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
    
    // Returns the text field at the given index
    UITextField *textField = [alertView textFieldAtIndex:0];
    textField.text = model.title;
    
    // The number of buttons on the alert view. (read-only)
    NSLog(@"The total number of button is : %ld", alertView.numberOfButtons);
    
    // Returns the title of the button at the given index.
    NSLog(@"The button title at the specified index : %@", [alertView buttonTitleAtIndex:1]);
    
    // The index number of the cancel button.
    NSLog(@"Index for the cancel button is : %ld",alertView.cancelButtonIndex);
    
    // -1 if no otherButtonTitles or initWithTitle:... not used
    NSLog(@"The index of the first other button is (read-only) : %ld",alertView.firstOtherButtonIndex);
    
    // show UIAlertView
    [alertView show];
UIAlertView的一些基本屬性

 

 

 

/**
 //根據被點擊按鈕的索引處理點擊事件
  Called when a button is clicked. The view will be automatically dismissed after this call returns
 */
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;

//AlertView即將顯示時
-(void)willPresentAlertView:(UIAlertView *)alertView;

// AlertView已經顯示時的事件
-(void)didPresentAlertView:(UIAlertView *)alertView;

// ALertView即將消失時的事件
// This method is invoked before the animation begins and the view is hidden.
-(void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex;

// AlertView已經消失時執行的事件
// This method is invoked after the animation ends and the view is hidden.
-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex;

// AlertView的取消按鈕的事件
// If not defined in the delegate, we simulate a click in the cancel button
-(void)alertViewCancel:(UIAlertView *)alertView;

 

 2、UIAlertController的使用方法:

  *  使用UIAlertController共需要三步

     *  1.實例化alert:alertControllerWithTitle

     *  2.實例化按鈕:actionWithTitle

     *  3.顯示alertController:presentViewController

// 1.實例化alert:alertControllerWithTitle
UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"編輯" message:@"請修改菜單名稱:" preferredStyle:UIAlertControllerStyleAlert];

// 2.實例化按鈕:actionWithTitle
// 為防止block與控制器間迴圈引用,我們這裡需用__weak來預防
__weak typeof(alert) wAlert = alert;
    [alert addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
        // 點擊確定按鈕的時候, 會調用這個block
        NSLog(@"%@",[wAlert.textFields.firstObject text]);
        
    }]];

    [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];

    // 添加文本框(只能添加到UIAlertControllerStyleAlert的樣式,如果是preferredStyle:UIAlertControllerStyleActionSheet則會崩潰)
    [alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
        
        textField.text = model.title;
        
        //監聽文字改變的方法
        [textField addTarget:self action:@selector(textFieldsValueDidChange:) forControlEvents:UIControlEventEditingChanged];
    }];

    [alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
        
        textField.secureTextEntry = YES;  // 密文形式顯示
        textField.text = model.price;
    }];

// 3.顯示alertController:presentViewController
[self presentViewController:alert animated:YES completion:nil];
UIAlertController的基本使用

 

 


四、閱讀提醒

  在Xcode的iOS8 SDK中,UIAlertView和UIAlertController都被UIAlertController取代。官方庫解釋:"UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead."、"UIActionSheet is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleActionSheet instead."。說明瞭在iOS8+開發,UIALertView和UIActionSheet已經過時了,UIAlertController以一種模塊化替換的方式來代替這兩這兩個控制項的功能和作用。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • js實現浮點數保留兩位小數代碼:過浮點數小數點後面的數字太長的話,可能需要進行截取操作,下麵是一段這樣的實例代碼和大家分享一下。代碼如下: var num=3.1415926; console.log(num.toFixed(2)) 以上代碼比較簡單,這裡就多介紹了,具體可以參閱javascript
  • package.json中會有dependencies定義了項目依賴的外部組件,這些外部組件的依賴都是帶有版本符號以表示被依賴組件的版本範圍。 { "dependencies" : { "foo" : "1.0.0 - 2.9999.9999" , "bar" : ">=1.0.2 <2.1.2"
  • 在AngularJS中如何實現一個Model的緩存呢?可以通過在Provider中返回一個構造函數,併在構造函數中設計一個緩存欄位,在本篇末尾將引出這種做法。一般來說,Model要賦值給Scope的某個變數。有的直接把對象賦值給Scope變數;有的在Provider中返回一個對象再賦值給Scope變
  • 在寫一個js圖片輪播的時候,遇到了一個瀏覽器報錯的問題,想了很久,後面解決了問題, 瀏覽器報錯如下: 在chrome瀏覽器報錯如下: Uncaught TypeError: Cannot read property 'style' of undefined 在firefox瀏覽器報錯如下: Type
  • Xcode7自2015年9上架以來也有段時間了, 使用Xcode7以及Xcode7.1\Xcode7.2的小伙伴會發現像VVDocumenter-Xcode\KSImageNamed-Xcode\HOStringSense-for-Xcode等等一系列的插件不能正常使用了,下麵我們就來解決一下該版本
  • 第一步 :獲取ShareSDK 為了集成ShareSDK,您首先需要到ShareSDK官方網站註冊並且創建應用,獲得ShareSDK的Appkey,然後到SDK的下載頁面下載SDK的壓縮包,解壓以後可以得到如下圖的目錄結構: ShareSDK在“ShareSDK for Android”目錄下,此目
  • 【原】AFNetworking源碼閱讀(六) 本文轉載請註明出處 —— polobymulberry-博客園 1. 前言 這一篇的想講的,一個就是分析一下AFSecurityPolicy文件,看看AFNetworking的網路安全策略,尤其指HTTPS(大家可以先簡單瞭解下HTTPS)。再一個就是分
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...