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.
Xcode では、webview 内のすべてのリンクを新しいナビゲーション コントローラー ビューで開くようにしています。スタックに追加できるようにします。
新しいビューは、古いビューとまったく同じにすることができますが、新しいリンクをロードする必要があるだけです。
コントローラーに UIWebViewDelegate を実装します。使用 ...
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { // Push here return NO; }
... メソッドで、次にプッシュする新しい URL を取得します。