我拿着一台导航控制器,显示下载RSS的补给品,并在表态中列出项目名称。 这一部分行之有效。 当我点击某条标题时,我想把我的费德·费特勒的事例推向导航站。 FeedArticleController装载 观点方法提出了看法(因为我想学习如何在方案上而不是使用国际B)。 注
- (void)loadView {
UIView *view = [[UIView alloc] init];
self.view = view;
webView = [[UIWebView alloc] initWithFrame:self.view.bounds];
webView.delegate = self;
[view addSubview:webView];
}
Does that make sense? Now, to make the webView actually load the page, I have this viewDiDLoad method:
- (void)viewDidLoad {
[super viewDidLoad];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
}
然后,我有代表方法、网络语言和网络语言。 他们只是向国家后勤局印刷。
我在我如何构造和补充看法时,就失去了一些东西? 代表的方法似乎在延迟之后印刷到标识上,在网上电文出现时,该行有交通。 因此,我认为它正在装上该页,但并未展示?
Thanks。