如何实现这样刺痛三个按钮并更改Three20的xib?
if (!self.albumController) {
self.albumController = [[AlThumbsViewController alloc] initWithNibName:@"" bundle:[NSBundle mainBundle]];
//I put in initWithNibName?
}
[self.navigationController pushViewController:self.albumController animated:YES];
[self.albumController release];
self.albumController = nil;
没有办法在三个xib中生成我有一个例子,但我不太了解。 谢谢大家
如何在没有看到另一个视图的情况下从一个视图移动到另一个视图" .xib"?
答案 0 :(得分:0)
我想你想构建一个新的控制器。
self.albumController = [[AlThumbsViewController alloc] init];
您需要确保AlThumbsViewController支持这种类型的构造。