BlocksKit 簡單使用

2021-07-10 19:18:41 字數 1054 閱讀 3400

blockskit

發現ios的裡面東西第三方開源的專案很多,可以挑選一些比較優秀的作為自己的開發工具備選的庫。最近在看一些開源的專案也發現有人喜歡用上這一庫,這個庫在收到了很多開發者的讚譽值得嘗試。

還有好多好多庫,暫時來講還是乙個個來用過後適合自己才來收錄才好。畢竟成千萬個庫這樣對自己也不好。

masonry (約束布局)

afnetworking(http網路請求)

ziparchive (解壓縮zip)

mbprogresshud (資訊提示器)

blockskit (使用block 可以簡化一些**模式)

uibutton *button = [uibutton buttonwithtype:uibuttontyperoundedrect];

button.frame = cgrectmake(0,50,100,20);

[button settitle:@"click" forstate: uicontrolstatenormal];

button.backgroundcolor = [uicolor greencolor];

[self

.view addsubview:button];

[button bk_addeventhandler:^(id sender)

message:@"你看不見我在測試嗎?" cancelbuttontitle:@"取消" otherbuttontitles:@[@"確定"] handler:^(uialertview *alertview, nsinteger buttonindex) 

}];[alertview show];

message:@"你看不見我在測試嗎?" cancelbuttontitle:@"取消" otherbuttontitles:@[@"確定"] handler:^(uialertview *alertview, nsinteger buttonindex)

}];[alertview show];

蘋果開發 筆記(64)BlocksKit

發現ios的裡面東西第三方開源的專案很多,可以挑選一些比較優秀的作為自己的開發工具備選的庫。最近在看一些開源的專案也發現有人喜歡用上這一庫,這個庫在收到了很多開發者的讚譽值得嘗試。還有好多好多庫,暫時來講還是乙個個來用過後適合自己才來收錄才好。畢竟成千萬個庫這樣對自己也不好。masonry 約束布局...

簡單使用Git

1.登陸伺服器 git 伺服器位址 git xx.yy.zz.com.cn ssh p steven git xx.yy.zz.com.cn 密碼認證後 伺服器控制台下 cd mnt disk1 moblin kernel linux 2.6.29.y.git git branch 列出branch...

vector 簡單使用

vector是c 標準模板庫中的部分內容,它是乙個多功能的,能夠操作多種資料結構和演算法的模板類和函式庫。vector之所以被認為是乙個容器,是因為它能夠像容器一樣存放各種型別的物件,簡單地說,vector是乙個能夠存放任意型別的動態陣列,能夠增加和壓縮資料。為了可以使用vector,必須在你的標頭...