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.
我是 iOS 开发的新手,并尝试制作一个名为的按钮,该按钮backhome仅在用户点击我在 loadRequest 中设置的本机网站的更改时才可见。
backhome
现在我的问题是:有什么方法可以检测用户是否离开了我在 if 语句中设置的网站?
为您的“”对象设置一个委托UIWebView,然后编写一个方法来响应:
UIWebView
webView:shouldStartLoadWithRequest:navigationType:
该调用中的请求参数有一个 URL,您可以从那里判断用户是否离开了您的默认网站。