我正在尝试从模态视图控制器(第2个)加载模态视图控制器(第1个)。虽然听起来很复杂,但可能并非如此。
第一个控制器实际上是一个UIWebView,它在.m文件的loadView方法中初始化:
- (void)loadView {
// Initialize webview and add as a subview to LandscapeController's view
myWebView = [[[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
//CGRect forceframe = CGRectMake(0, 0, 480, 320);
//myWebView = [[[UIWebView alloc] initWithFrame:forceframe] autorelease];
myWebView.scalesPageToFit = YES;
myWebView.autoresizesSubviews = YES;
myWebView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
myWebView.delegate = self;
self.view = myWebView;
}
然后在viewDidLoad中:
- (void)viewDidLoad {
[super viewDidLoad];
// Load HTML file as an NSURL request
[self.myWebView loadHTMLString:updated_html baseURL:nil];
// Invoke the covering modal view on condition
if (some_condition) {
landscapeCoverController = [[UIViewController alloc] initWithNibName:@"LandscapeCoverController" bundle:[NSBundle mainBundle]];
[self presentModalViewController:landscapeCoverController animated:YES];
[landscapeCoverController release];
}
使用我在IB中设置的NIB初始化预期的第二模态视图控制器(landscapeCoverController)。
我的预期目标是使用“LandscapeCoverController”视图有条件地掩盖UIWebView,该视图将具有一些按钮和交互性,这将导致第二模态视图被解除。
为什么我的landscapeCoverController没有加载?任何想法都非常感谢!
另外......第一个模态视图控制器(LandscapeViewController).h看起来像:
@class LandscapeCoverController;
@interface LandscapeViewController : UIViewController <UIWebViewDelegate> {
UIWebView *myWebView;
LandscapeViewController *landscapeCoverController;
}
@property (nonatomic, retain) UIWebView *myWebView;
@property (nonatomic, retain) LandscapeViewController *landscapeCoverController; // Modal view controller
和...第二个模态视图控制器(landscapeCoverController)viewDidLoad什么都不做:
// NIB initialized in LandscapeViewController.m viewDidLoad:
- (void)viewDidLoad {
[super viewDidLoad];
}
我认为
landscapeCoverController = [[UIViewController alloc] initWithNibName:@"LandscapeCoverController" bundle:[NSBundle mainBundle]];
[self presentModalViewController:landscapeCoverController animated:YES];
[landscapeCoverController release];
语句应该处理控制器的初始化和加载......
答案 0 :(得分:1)
您将landscapeCoverController声明为LandscapeViewController
的实例,并将其分配为UIViewController
。这很可能是你的问题(可能是第一个问题,因为你没有调用任何特定于LandscapeViewController的方法)。此外,由于landscapeCoverController是一个实例变量,因此您不需要在presentModalViewController
之后释放它。尝试选择更多不同的类名。这将使您在将来免于混淆。