iOS學習之載入storyboard和xib檔案
1.載入storyboard(故事板)
//a) 獲取故事板
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"故事板的名字" bundle:nil];
//b) 將故事板中的檢視覆蓋導航檢視(方法一)
UINavigationController *navig = [storyboard instantiateInitialViewController];
//c) 方法二
UIViewController *navig = [storyboard instantiateInitialViewController];
//d) 方法三(指定加入某一個檢視)
UINavigationController *navig = [storyboard instantiateViewControllerWithIdentifier:@"自己定義的storyboardID"];
2.載入xib檔案------nib
//a) 將檔案放入陣列中
NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"xib檔名" owner:nil options:nil];
//b) 從陣列中取出檢視,一般習慣放在陣列最後
UIView *view = [array lastObject];
//c) 新增到檢視上
[self.view addSubview:view];
-----小細節-----
//a) 設定導航欄上的小標題
prompt
//b)設定導航欄的返回按鈕
backButton
//c) block塊可以減少程式碼的重複輸入
code block{}
//d) 一次性修改花括號裡相同的內容
一次修改花括中相同內容
{
}