如何使用NIB文件动态创建视图控制器?
感谢。
答案 0 :(得分:1)
使用[[OptionAController alloc] initWithNibName:@"NameOfNIB" bundle:nil]
。您可以在Apple的UIViewController documentation。
答案 1 :(得分:0)
仍然需要帮助。我想发布我正在做的事情。我不知道用于指定要加载的NIB的语法。
感谢。
OptionAController *otherVC = [[OptionAController alloc] init ????];
[self presentModalViewController otherVC animated:YES];
[otherVC release];