iPad SplitView 详细视图默认加载
我有一个 iPad 分割视图应用程序。详细视图是一个网络视图。在哪种方法中,我可以在用户单击表视图中的项目之前启动应用程序时加载默认页面?
I have an iPad split-view app. The detailview is a webview. In which method, can I get a default page loaded when the app launch before the user clicks on an item in the table view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在detailviewcotroller.h中,如下创建outlet,
通过拖放uiwebview控件连接xib中的outlet。
在你的detailviewcontroller.m的viewdidload方法中你可以写如下-
IN detailviewcotroller.h , create outlet as follows,
connect outlet in xib by drag n droping uiwebview control.
In your detailviewcontroller.m's viewdidload method u can write as follows-
只是一个很好的建议,通过创建 Outlet,在合成时执行以下操作:
@synthesize webView = _webView;
并使用:
[_webView loadRequest:req];
用于加载您的请求。
Just a good advice, by creating Outlets, when you synthesize do:
@synthesize webView = _webView;
and use :
[_webView loadRequest:req];
for loading your request.