我有一个View Controller,名为ThemeViewController,有三个笔尖,所有笔尖都是不同的主题。
我想通过点击应用内的按钮来更改笔尖。我在ThemeViewController类中放置了这个方法。
- (IBAction)switchTheme {
self = [[ThemeViewController alloc] initWithNibName:@"theme_1" bundle:nil];
}
任何帮助或建议?感谢
答案 0 :(得分:1)
请改用:
[[NSBundle mainBundle] loadNibNamed:@"yourNibName" owner:self options:nil];