1
如何在使用UIButton的iPhone開發中更改視圖。我不想使用工具欄。謝謝如何使用UIButton更改視圖
如何在使用UIButton的iPhone開發中更改視圖。我不想使用工具欄。謝謝如何使用UIButton更改視圖
事情是這樣的:
- (IBAction)switchViews:(id)sender {
if (self.vc1 == nil) {
self.vc1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
[self.vc2 removeFromSuperview];
[self.view addSubView:vc1];
vc2 = nil;
}
else {
self.vc2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
[self.vc1 removeFromSuperView];
[self.view addSubView:vc2];
vc1 = nil;
}
}
非常感謝您! – Shawn