Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目(iPhone 应用程序)中,我有一个不错的 web 视图,允许用户浏览一些网站,并且我有上一个/下一个按钮,就像任何浏览器一样。
我如何知道我何时有上一页或下一页,以便我可以禁用这两个选项中的任何一个?
UIWebView 上有用于此的属性:
@property(nonatomic, readonly, getter=canGoBack) BOOL canGoBack @property(nonatomic, readonly, getter=canGoForward) BOOL canGoForward
它们是布尔值,返回 YES 或 NO 取决于是否有页面可以在任一方向导航。