捕捉返回按鈕導航事件 (Catching back button navigation event)


問題描述

捕捉返回按鈕導航事件 (Catching back button navigation event)

I have a nav based app.  Once a row is clicked in a tableview, I push a UIWebView.  The UIWebView has web links in it.  The user clicks a link, which renders the external webpage.  This all happens within my app.  The top nav bar hasn't changed with the clicking of a link that renders and external webpage.  However, once the user clicks the top left nav button, they go back to the tableview rather than the initial UIWebView.  How can I wire up to the nav back button and put the user back to the initial UIWebView if they are clicking from following an external link?

‑‑‑‑‑

參考解法

方法 1:

You can be notified of navigation controller changes, but I don't believe you can prevent them from happening (UINavigationControllerDelegate protocol).

One way to solve this is to set up an object to be the webview's delegate (UIWebViewDelegate  protocol) and implement:

‑ (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

Here return NO to avoid opening the link in the webview, hand the request over to a webview in a second view controller, and push this second view controller on the navigation controller stack.

This way you don't have to intercept the backwards navigation but the UI behaves like the user expects.

(by 4thSpaceduncanwilcox)

參考文件

  1. Catching back button navigation event (CC BY‑SA 3.0/4.0)

#cocoa-touch #iphone #uinavigationbar #uiwebview #uitableview






相關問題

防止 UITableView 在自定義子視圖處理觸摸時滾動 (Prevent UITableView from scrolling when custom subview is handling touches)

NSMutableArray removeObjectAtIndex 在第二次執行時崩潰 (NSMutableArray removeObjectAtIndex crashes on second execution)

Apakah NSURLConnections termasuk dalam model atau pengontrol saya? (Do NSURLConnections belong in my model or controller?)

Lợi ích của việc sử dụng NSString tĩnh cho CellIdentifier là gì? (Whats the advantage of using a static NSString for CellIdentifier?)

CGContextRef 中的坐標係是什麼樣的? (How does the coordinate system in an CGContextRef look like?)

無法在不崩潰的情況下設置 ABPeoplePickerNavigationController 的 addressBook 屬性 (Can't set the addressBook property of ABPeoplePickerNavigationController without crashing)

tableViewHeader 拒絕多個子視圖 (tableViewHeader rejecting multiple sub-views)

界面生成器添加了一個標籤欄按鈕,但未顯示 (Interface builder added one tab bar button, but not showing up)

iVar getter / 方法同名? (iVar getter / method with same name?)

如何更改主視圖是基於導航的應用程序! (how to change main view is navigation based app!)

捕捉返回按鈕導航事件 (Catching back button navigation event)

如何將對象轉發到單獨的子視圖? (How can i forward objects to separate subviews?)







留言討論