學習筆記 UIAlertController

2021-06-28 11:40:11 字數 1444 閱讀 3617

ios8以後蘋果就推薦用uialertcontroller來建立提示框了,uialertcotroller也是ios8以後才可以用的 ];

// 其他按鈕 uialertactionstyledefault

uialertaction

*otheraction = [

uialertaction

actionwithtitle:

@"確定

"style:uialertactionstyledefaulthandler:^(

uialertaction

*action) ];

// 描述的紅色按鈕 uialertactionstyledestructive

uialertaction

*destructive = [

uialertaction

actionwithtitle:

@"描述

"style:uialertactionstyledestructivehandler:^(

uialertaction

*action) ];

// 將建立的alertaction新增到alertcontroller中,其中取消按鈕一直都是在最底部,其他按鈕的順序按新增順序

[alertcontroller addaction:cancelaction];

[alertcontroller addaction:otheraction];

[alertcontroller addaction:destructive];

// 新增textfield輸入框,可以在block中修改textfield的屬性

__weak

viewcontroller *wself = self;

[alertcontroller addtextfieldwithconfigurationhandler:^(uitextfield *textfield) ];

[alertcontroller addtextfieldwithconfigurationhandler:^(uitextfield *textfield) ];

// 展示alertcontroller

[self

presentviewcontroller:alertcontroller animated:

nocompletion:^];

}// 檢測textfield的文字變化

其中如果是actionsheet的話,不能新增textfield屬性

學習筆記 雜湊學習筆記

hash基本原理 hash就是乙個像函式一樣的東西,你放進去乙個值,它給你輸出來乙個值。輸出的值就是hash值。一般hash值會比原來的值更好儲存 更小 或比較。那字串hash就非常好理解了。就是把字串轉換成乙個整數的函式。而且要盡量做到使字串對應唯一的hash值。它的主要思路是選取恰當的進製,可以...

學習筆記 CentOS 學習筆記01

簡單的做個課堂筆記 虛擬機器用的是vmware,系統是centos cd etc sysconfig network scripts pwdls 顯示列表 cat ifcfg eth0 檢視檔案內容 vi ifcfg eth0 進入vi編輯器 onboot no 原始設定 x逐字刪除 d刪除整行 a...

筆記 spring cloud 學習筆記

1 spring cloud 是什麼 spring cloud為開發人員提供了快速構建分布式系統中一些常見模式的工具 例如配置管理,服務發現,斷路器,智慧型路由,微 控制匯流排 分布式系統的協調導致了樣板模式,使用spring cloud開發人員可以快速地支援實現這些模式的服務和應用程式。他們將在任...