在iOS SDK中关闭UIWebView时的回调

时间:2010-12-18 01:56:15

标签: iphone sdk uiwebview callback

在我的应用程序中,我加载了一个WebView,然后在嵌入式浏览器中加载另一个WebView。我想在用户关闭嵌入式浏览器时在第一个WebView上执行一个函数。谁知道我怎么能做到这一点?我理想地需要(并且相信不存在)是用户关闭嵌入式浏览器时的回调函数。

谢谢, NEHA。

1 个答案:

答案 0 :(得分:-1)

基本概念如下所列

// set up notification for when embedded browser is closed
[[NSNotificationCenter defaultCenter] addObserver:self 
          selector:@selector(myMethod) 
          name:@"embeddedBrowserClosed" object:nil];

// post notification when browser is closed
[[NSNotificationCenter defaultCenter] 
          postNotificationName:@"embeddedBrowserClosed"]

点击此处Blog Posting

了解详情