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

ios - 无法从呈现的 View Controller 访问委托(delegate)方法

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

委托(delegate)声明

// FolderListViewController.h
#import <UIKit/UIKit.h>
#import "Folder.h"

@protocol FolderSelectionDelegate <NSObject>

@required
- (void)setFolderFolder *)folder;

@end

@interface FolderListViewController : UITableViewController

@property (nonatomic, assign) id<FolderSelectionDelegate> delegate;

- (IBAction)showDashboardid)sender;

@end

从 didSelectRowAtIndexPath 调用委托(delegate):

// FolderListViewController.m
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath {
    [self.delegate setFolder:dataSource[indexPath.row]];
}

应该接收消息的 VC

#import <UIKit/UIKit.h>
#import "FolderListViewController.h"
#import "Folder.h"

@interface ProjectListViewController : UITableViewController <FolderSelectionDelegate, UISplitViewControllerDelegate, UISearchBarDelegate, UINavigationControllerDelegate>

@property (nonatomic,retain)UIActivityIndicatorView *activityIndicatorObject;
@property (nonatomic, copy)Folder *folder;


-(void)loadProjectsFolder*)folder;

@end

呈现 VC 的 Action

- (void)foldersButtonTapped {
    UINavigationController *vc = [[UIStoryboard storyboardWithName"MainStoryboard_iPhone" bundle:nil] instantiateViewControllerWithIdentifier"FolderListNavController"];
    vc.delegate = self;
    [self presentViewController:vc animated:YES completion:nil];
}

委托(delegate)方法实现

- (void)setFolderFolder *)folder {
    _folder = folder;
    [self loadProjects:folder];
}

我已经阅读了这里的多个线程并且没有任何运气。起初,在展示 FolderListVC(即 vc.delegate = self)时,我没有提到 ProjectListVC 设置。不过,这似乎不是问题所在。我正在开发一个为 iPad 构建的应用程序,并将其扩展到所有设备上。此处的实现有效(它设置为 Split View Controller )。任何帮助将不胜感激



Best Answer-推荐答案


我认为 UINavigationcontroller 正在制造问题,因为它没有设置 FolderListViewController 委托(delegate)。你可以这样试试吗?

 FolderListViewController *vc=[self.storyboard instantiateViewControllerWithIdentifier"FolderListViewController"];

    vc.delegate=self; // protocol listener
    [self.navigationController pushViewController:vc animated:YES];

关于ios - 无法从呈现的 View Controller 访问委托(delegate)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38769673/

回复

使用道具 举报

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

本版积分规则

关注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