从变量切换XIB到View Controller

时间:2011-08-07 19:22:11

标签: iphone objective-c ios frameworks uiviewcontroller

我正在制作一个框架,我想回到发布者设置的视图控制器。我使用这段代码:

BV_APIViewControllerler *newView = [[BV_APIViewController alloc] initWithNibName:nil bundle:nil];
newView.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:newView animated:YES];
[newView release];

但我想切换到他们保存到NSUserDefaults的视图控制器

1 个答案:

答案 0 :(得分:1)

有什么问题? Juste读取存储在默认值中的nib名称,并使用它。 XIB文件必须将BV_APIViewController作为文件的所有者引用。