自己封裝了的AlertController

来源:https://www.cnblogs.com/BigKingBlog/archive/2018/07/04/9263456.html
-Advertisement-
Play Games

一直覺得使用系統這個東西寫起來特別麻煩,每次都要寫一大推東西,還是重覆的,今天抽了點時間自己重新封裝了一下,解決了自己的強迫症。。。,不多說,直接上代碼了。 1.自己定義了一個名為XBZ的UIAlertViewControllerde 分類,.h文件裡面 2.然後是.m文件 3.調用方法,就統一寫到 ...


一直覺得使用系統這個東西寫起來特別麻煩,每次都要寫一大推東西,還是重覆的,今天抽了點時間自己重新封裝了一下,解決了自己的強迫症。。。,不多說,直接上代碼了。

1.自己定義了一個名為XBZ的UIAlertViewControllerde 分類,.h文件裡面

 1 #import <UIKit/UIKit.h>
 2 
 3 typedef void(^ActionOne)(void);
 4 
 5 typedef void(^ActionTwo)(void);
 6 
 7 @interface UIAlertController (XBZ)
 8 
 9 /**
10  不帶message的彈出提示,預設顯示2s自動dismiss
11 
12  @param controller 當前彈出的控制器
13  @param title 標題
14  */
15 + (void)alertWithController:(nonnull UIViewController *)controller title:(nonnull NSString *)title;
16 
17 
18 /**
19  不帶message的彈出提示,可自定義dismiss時間
20 
21  @param controller 當前彈出的控制器
22  @param title 標題
23  @param timerInerval dismiss時間
24  */
25 + (void)alertWithController:(nonnull UIViewController *)controller title:(nonnull NSString *)title timeInterval:(NSTimeInterval)timerInerval;
26 
27 /**
28  帶message的彈出提示,預設顯示2s自動dismiss掉
29 
30  @param controller 當前彈出的控制器
31  @param title 標題
32  @param message 消息內容
33  */
34 + (void)alertWithController:(nonnull UIViewController *)controller title:(nonnull NSString *)title message:(nonnull NSString *)message;
35 
36 /**
37  帶message的彈出提示,可自定義dismiss時間
38 
39  @param controller 當前彈出的控制器
40  @param title 標題
41  @param message 消息內容
42  @param timerInerval dismiss時間
43  */
44 + (void)alertWithController:(nonnull UIViewController *)controller title:(nonnull NSString *)title message:(nonnull NSString *)message timeInterval:(NSTimeInterval)timerInerval;
45 
46 
47 /**
48  使用預設action風格的alert,最多支持兩個按鈕(一般兩個就夠了)
49 
50  @param controller 當前彈出的控制器
51  @param title 標題
52  @param message 消息內容
53  @param titles 按鈕標題數組
54  @param actionOne 第一個按鈕事件
55  @param actionTwo 第二個按鈕事件
56  @param alertStyle 彈出方式,採用sheet時會自動加上cacel按鈕
57  */
58 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message actionTitles:(nonnull NSArray<NSString *> *)titles actionOne:(ActionOne)actionOne actionTwo:(ActionTwo)actionTwo alertStyle:(UIAlertControllerStyle)alertStyle;
59 
60 /**
61  可自己定義action風格的alert
62 
63  @param controller 當前彈出的控制器
64  @param title 標題
65  @param message 消息內容
66  @param titles 按鈕標題數組
67  @param actionStyles action風格,數組形式
68  @param actionOne 第一個按鈕事件
69  @param actionTwo 第二個按鈕事件
70  @param alertStyle 彈出方式,採用sheet時會自動加上cacel按鈕
71  */
72 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message actionTitles:(nonnull NSArray<NSString *> *)titles actionStyles:(NSArray<NSNumber *> *)actionStyles actionOne:(ActionOne)actionOne actionTwo:(ActionOne)actionTwo alertStyle:(UIAlertControllerStyle)alertStyle;
73 
74 @end

2.然後是.m文件

  1 #import "UIAlertController+XBZ.h"
  2 
  3 NSTimeInterval kDefaultTimerInterval = 2.f;
  4 
  5 @implementation UIAlertController (XBZ)
  6 
  7 
  8 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title {
  9     
 10     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:@"" preferredStyle:UIAlertControllerStyleAlert];
 11     
 12     [NSTimer scheduledTimerWithTimeInterval:kDefaultTimerInterval target:self selector:@selector(dismissAlertController:) userInfo:alertController repeats:NO];
 13     
 14     [controller presentViewController:alertController animated:YES completion:nil];
 15     
 16 }
 17 
 18 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title timeInterval:(NSTimeInterval)timerInerval {
 19     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:@"" preferredStyle:UIAlertControllerStyleAlert];
 20     
 21     [NSTimer scheduledTimerWithTimeInterval:timerInerval target:self selector:@selector(dismissAlertController:) userInfo:alertController repeats:NO];
 22     
 23     [controller presentViewController:alertController animated:YES completion:nil];
 24 }
 25 
 26 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message {
 27     
 28     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
 29     
 30     [NSTimer scheduledTimerWithTimeInterval:kDefaultTimerInterval target:self selector:@selector(dismissAlertController:) userInfo:alertController repeats:NO];
 31     
 32     [controller presentViewController:alertController animated:YES completion:nil];
 33     
 34 }
 35 
 36 
 37 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message timeInterval:(NSTimeInterval)timerInerval {
 38     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
 39     
 40     [NSTimer scheduledTimerWithTimeInterval:timerInerval target:self selector:@selector(dismissAlertController:) userInfo:alertController repeats:NO];
 41     
 42     [controller presentViewController:alertController animated:YES completion:nil];
 43 }
 44 
 45 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message actionTitles:(nonnull NSArray<NSString *> *)titles actionOne:(ActionOne)actionOne actionTwo:(ActionTwo)actionTwo alertStyle:(UIAlertControllerStyle)alertStyle {
 46     
 47     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:alertStyle];
 48     
 49     switch (titles.count) {
 50             break;
 51         case 1:
 52         {
 53             [alertController addAction:[UIAlertAction actionWithTitle:titles.firstObject style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
 54                 if (actionOne) {
 55                     actionOne();
 56                 }
 57             }]];
 58         }
 59             break;
 60         case 2:
 61         {
 62             [alertController addAction:[UIAlertAction actionWithTitle:titles.firstObject style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
 63                 if (actionOne) {
 64                     actionOne();
 65                 }
 66             }]];
 67             [alertController addAction:[UIAlertAction actionWithTitle:titles.lastObject style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
 68                 if (actionTwo) {
 69                     actionTwo();
 70                 }
 71             }]];
 72         }
 73             break;
 74         default:
 75             break;
 76     }
 77     
 78     
 79     if (alertStyle == UIAlertControllerStyleActionSheet) {
 80         [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:NULL]];
 81     }
 82     
 83     [controller presentViewController:alertController animated:YES completion:nil];
 84 }
 85 
 86 + (void)alertWithController:(nonnull UIViewController *)controller title:(NSString *)title message:(NSString *)message actionTitles:(nonnull NSArray<NSString *> *)titles actionStyles:(NSArray<NSNumber *> *)actionStyles actionOne:(ActionOne)actionOne actionTwo:(ActionOne)actionTwo alertStyle:(UIAlertControllerStyle)alertStyle {
 87     
 88     UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:alertStyle];
 89     
 90     switch (titles.count) {
 91             break;
 92         case 1:
 93         {
 94             UIAlertActionStyle style = actionStyles.firstObject ? [actionStyles.firstObject integerValue] : UIAlertActionStyleDefault;
 95             [alertController addAction:[UIAlertAction actionWithTitle:titles.firstObject style:style handler:^(UIAlertAction * _Nonnull action) {
 96                 if (actionOne) {
 97                     actionOne();
 98                 }
 99             }]];
100         }
101             break;
102         case 2:
103         {
104             UIAlertActionStyle styleOne = actionStyles.firstObject ? [actionStyles.firstObject integerValue] : UIAlertActionStyleDefault;
105             UIAlertActionStyle styleTwo = actionStyles.lastObject ? [actionStyles.lastObject integerValue] : UIAlertActionStyleDefault;
106             [alertController addAction:[UIAlertAction actionWithTitle:titles.firstObject style:styleOne handler:^(UIAlertAction * _Nonnull action) {
107                 if (actionOne) {
108                     actionOne();
109                 }
110             }]];
111             [alertController addAction:[UIAlertAction actionWithTitle:titles.lastObject style:styleTwo handler:^(UIAlertAction * _Nonnull action) {
112                 if (actionTwo) {
113                     actionTwo();
114                 }
115             }]];
116         }
117             break;
118         default:
119             break;
120     }
121     
122     
123     if (alertStyle == UIAlertControllerStyleActionSheet) {
124         [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:NULL]];
125     }
126     
127     [controller presentViewController:alertController animated:YES completion:nil];
128     
129 }
130 
131 + (void)dismissAlertController:(NSTimer *)timer {
132     
133     UIAlertController *alertController = timer.userInfo;
134     
135     [alertController dismissViewControllerAnimated:YES completion:nil];
136 
137     [timer invalidate];
138     timer = nil;
139 }
140 
141 @end

 

3.調用方法,就統一寫到一個方法裡面了~

 1 - (void)example {
 2     
 3     [UIAlertController alertWithController:self title:@"這是我的標題,我會自動2s消失"];
 4     
 5     [UIAlertController alertWithController:self title:@"這是我的標題,我會根據時間來讓我消失" timeInterval:4.f];
 6     
 7     [UIAlertController alertWithController:self title:@"我是帶message的,我會自動2s消失" message:@"我是message"];
 8     
 9     [UIAlertController alertWithController:self title:@"我是帶message的,我根據時間來讓我消失" message:@"我是message" timeInterval:3.f];
10     
11     [UIAlertController alertWithController:self title:@"我是帶按鈕的,使用預設風格的action style" message:@"我還是個消息" actionTitles:@[@"確定", @"取消"] actionOne:^{
12         
13         NSLog(@"點了確定了");
14         
15     } actionTwo:^{
16         
17         NSLog(@"點了取消了");
18         
19     } alertStyle:UIAlertControllerStyleAlert];
20     
21     [UIAlertController alertWithController:self title:@"我是帶按鈕的,能自定義action style的" message:@"我就是個消息" actionTitles:@[@"確定", @"取消"] actionStyles:@[@(UIAlertActionStyleDefault), @(UIAlertActionStyleDestructive)] actionOne:^{
22         
23         NSLog(@"點了確定了");
24         
25     } actionTwo:^{
26         
27         NSLog(@"點了取消了");
28         
29     } alertStyle:UIAlertControllerStyleAlert];
30     
31 }

目前就寫了最多兩個按鈕的情況,代碼也算簡化了不少,看著沒那麼亂了,再多的按鈕就單獨寫吧,反正用得不多。-_-

最後附上demo地址吧:https://github.com/BigKingQY/XBZAlertViewController_Demo.git

寫完才發現,名字裡面多了個view...就不改了...-_-!!


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

-Advertisement-
Play Games
更多相關文章
  • 最近有小伙伴說,7.0適配整了一波,現在又要來適配8.0,真是一波未平一波又起 但是作為開發者來說,學無止境,不跟上時代的步伐,肯定會被時代所淘汰... 話說Android P已經在路上了,你準備好了嗎? 適配屬性 1、通知渠道(Channeld) 當然,適配8.0的第一步自然是把targeSdk升 ...
  • 1.首先下載Eclipse for android,點擊進入。下載這個版本可以省去ADT配置() 2.下載符合你電腦的版本 2.現在Android SDK,地址:http://tools.android-studio.org/index.php/sdk 3.啟動Eclipse,選擇windows>p ...
  • 前言 大家好,給大家帶來 的概述,希望你們喜歡 前言 如果你想學習Android開發,那你就要瞭解Java編程,這是基礎,也是重點,如果沒學Java語法就先學習,再來學Android,別問可不可以先學Android,都告訴了,先學Java對吧! Android開發的基本瞭解 Android開發主要了 ...
  • 1.筆者常用三方庫 名稱作用說明 <small>AFNetworking <small>基於HTTP/HTTPS 聯網請求 <small> <small>SDWebImage <small>圖片非同步載入和緩存 <small> image圖像沒做壓縮處理 <small> FMDB <small>SQL ...
  • 版權聲明:未經博主允許不得轉載 AsyncTask 瞭解AsyncTask非同步,需要瞭解一下非同步任務(多線程),什麼是線程,可以這麼說線程好比邊吃飯邊看電視,AsyncTask是為了方便後臺線程中操作更新UI,本質為Handler非同步消息處理機制。 學習AsyncTask需要知道它的參數,它要實現的 ...
  • 1.具體代碼: 服務端實現: 可以看到onTransact有四個參數 code , data ,replay , flags code 是一個整形的唯一標識,用於區分執行哪個方法,客戶端會傳遞此參數,告訴服務端執行哪個方法; data客戶端傳遞過來的參數; replay伺服器返回回去的值; flag ...
  • 沒有android support library下載項。 找了很多資料,發現 android support library 被Google廢棄了,不推薦使用。代替使用的是 android support repository 這是一個倉庫。 然後我查看了一下這個倉庫找到sdk的安裝路徑,比如我的 ...
  • 1、概述 Binder能幹什麼?Binder可以提供系統中任何程式都可以訪問的全局服務。這個功能當然是任何系統都應該提供的,下麵我們簡單看一下Android的Binder的框架 Android Binder框架分為伺服器介面、Binder驅動、以及客戶端介面;簡單想一下,需要提供一個全局服務,那麼全 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...