建立提示框
//建立提示框
//標題 提示內容 **物件 按鈕
uialertview * alertview = [[uialertview alloc]initwithtitle:@"
警告" message:@"
薩達姆已經做好戰鬥準備
"delegate:self cancelbuttontitle:@"
取消" otherbuttontitles:@"
確定",@"
不確定", nil];
設定提示框樣式
alertview .alertviewstyle =uialertviewstyleplaintextinput;/*typedef ns_enum(nsinteger, uialertviewstyle) __tvos_prohibited;
*/
讓alertview顯示出來
[alertview show];
設定** 實現協議方法
alertview.delegate = self;
#pragma mark - uialertviewdelegate- (void)alertview:(uialertview *)alertview clickedbuttonatindex:(nsinteger)buttonindex
else
}
ios9之後不建議使用
uialertcontroller+uialertcontrollerstylealert 也可以實現同樣功能
iOS之UI 轉場動畫
1.什麼是轉場動畫?就是從乙個場景轉換到另乙個場景,像導航控制器的push效果,就是乙個轉場.2.如何建立轉場動畫 建立轉場動畫 catransition anim catransition animation 設定轉場型別 anim.type cube anim.duration 1 設定轉場的方...
iOS之UI控制項之TableView詳細解釋
建立 uitableview datatable uitableview alloc initwithframe cgrectmake 0,0,320,420 datatable setdelegate self datatable setdatasource self self.view adds...
iOS開發之UI基礎 KVC
k vc key value coding 1.字典轉模型 dic answer dic icon dic title dic options kvc 把字典中的值,賦給當前物件制定的屬性 answer self setvalue dic answer forkeypath answer 遍歷字典中...