在我的项目(iPhone应用程序)中,我有一个很好的webview,允许用户浏览一些网站,我有任何浏览器的上一个/下一个按钮。
我如何知道何时有上一页或下一页,以便我可以禁用这两个选项中的任何一个?
答案 0 :(得分:0)
UIWebView上有以下属性:
@property(nonatomic, readonly, getter=canGoBack) BOOL canGoBack
@property(nonatomic, readonly, getter=canGoForward) BOOL canGoForward
它们是布尔值,返回YES或NO,具体取决于是否有向任一方向导航的页面。