UIPageControl 更改 UIWebView 的 URL
Posted
技术标签:
【中文标题】UIPageControl 更改 UIWebView 的 URL【英文标题】:UIPageControl to change URL of UIWebView 【发布时间】:2012-12-28 20:30:40 【问题描述】:我的页面上有一个UIWebView
和一个UIPageControl
:
UIPageControl 只有两个按钮/点,第一个我需要加载 UIWebView (www.mywebsite.com/page1.html),第二个点需要加载 (www.mywebsite.com/page2. html)
感谢任何帮助,已在互联网上查看,但似乎找不到类似的东西。
干杯,
杰克。
【问题讨论】:
【参考方案1】:可以向页面控件添加操作:
[pageControl addTarget:self action:@selector(changeURL:) forControlEvents:UIControlEventValueChanged];
然后使用 switch 语句或 if/else if 和 pageControl 的索引来确定要使用的 URL,然后重新加载 webview。
另一条路线(可能更简单?)是创建一个“点”图像并使用自定义 UIButtons 来实现这一点。按下按钮时将按钮设置为“选中”等。
【讨论】:
以上是关于UIPageControl 更改 UIWebView 的 URL的主要内容,如果未能解决你的问题,请参考以下文章