我正在尝试覆盖我的应用程序的 openURL 方法来拦截 UITextView 中的链接点击。 UITextView 位于基于导航的 DetailViewController 中,当用户单击链接时,我想将 Web View 推送到导航堆栈上。
我通过将截获的 url 记录到控制台来验证我的方法正在被调用,但导航 Controller 根本没有推送我的 WebViewController。我在界面生成器中制作了一个按钮,并将其添加到与 textview 相同的 View 中,只是为了验证 WebView 是否被推送。该按钮仅用于测试目的。
问题似乎是,当我从 AppDelegate 调用该方法时,navigationController pushViewController 代码没有被触发,即使 NSLog 显示我正在获取有效的截获 url。
感谢您提供的任何帮助!代码:
在 AppDelegate.m 中:
- (BOOL)openURLNSURL *)url
{
DetailViewController *webView = [[DetailViewController alloc]init];
webView.url = url;
[webView push];
return YES;
}
DetailViewController.h:
#import <UIKit/UIKit.h>
@interface DetailViewController : UIViewController <UIGestureRecognizerDelegate>
@property (nonatomic, strong) NSURL *url;
- (void)push;
@end
DetailViewController.m:
- (void)push
{
WebViewController *webView = [[WebViewController alloc] initWithNibName"WebViewController" bundle:[NSBundle mainBundle]];
webView.url = self.url;
NSLog(@"%@",self.url);
[self.navigationController pushViewController:webView animated:YES];
}
我通过使用 NSNotification 解决了这个问题。下面的代码供其他找到此内容的人使用:
AppDelegate.m:
- (BOOL)openURLNSURL *)url
{
[[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName"WebViewNotification" object:url]];
return YES;
}
DetailViewController.m:
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(webViewNotification name"WebViewNotification" object:nil];
}
- (void)webViewNotificationNSNotification *)notification
{
NSURL *url = [notification object];
WebViewController *webView = [[WebViewController alloc] initWithNibName"WebViewController" bundle:[NSBundle mainBundle]];
webView.url = url;
[self.navigationController pushViewController:webView animated:YES];
}
关于iphone - 覆盖 openURL 后无法推送 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17325676/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |