使用 UIWebView 视图中的标签
我有一个视图,我想在单击它时放置一个测试(UILabel)女巫,它会打开一个带有 URL 的 Web 视图(WWW.mySite.com)。 请问我该怎么做?
谢谢你的回答
I have a View, i would like to put a test ( a UILabel) witch when clicking it, it open me a web View with an URL ( WWW.mySite.com).
How i can do this please ?
thanks for your answers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用按钮,将文本放入按钮,将按钮 PressUpInside 的操作连接到一个函数,该函数将使用您的 URL 调用 UIWebView 的 - (void)loadRequest:(NSURLRequest *) 请求。
Use a button, put the text into the button, hook up the actions from the button pressedUpInside to a function which will call the UIWebView's - (void)loadRequest:(NSURLRequest *)request with your URL.
查找有关 UIWebView 的 Apple 文档并使用连接到 IBAction 的 UIButton。当出现此类问题时,请务必查阅文档。它确实已经完成并且通常做得很好。
Look up Apple documentation on UIWebView and use a UIButton connected to an IBAction. Always turn to the documentation when these kinds of questions come up. It is really through and usually pretty well done.