在iOS開發(fā)中诸蚕,有三種開發(fā)UI的方式步势,純代碼,xib背犯,storyboard坏瘩。我是喜歡用純代碼開發(fā)的,但是項目中總會有人用其他的方式漠魏,那么怎么進行跳轉呢倔矾?下面分別介紹
1,跳轉到xib 假設有一個按鈕柱锹,這個按鈕就是實現(xiàn)跳轉的破讨,那么在這個按鈕的點擊事件中,代碼可以這樣寫
AViewController *a1= [[AViewController alloc]initWithNibName:@”AViewController” bundle:[NSBundle mainBundle]]; [self.navigationController pushViewController:a1 animated:YES]; 2,跳轉到storyboard 如上奕纫,代碼可以這樣寫 UIStoryboard *sb=[UIStoryboard storyboardWithName:@”A” bundle:nil]; [self presentViewController:[sb instantiateInitialViewController] animated:YES completion:nil];