• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iphone - 覆盖 openURL 后无法推送 View Controller

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:56:13 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试覆盖我的应用程序的 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];
}



Best Answer-推荐答案


我通过使用 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap