我有一个tableView。在单击特定行时,我想通过XIB
将数据发送到另一个didSelectRowAtIndexPath
文件。
目前,我可以通过此在XIB之间导航
abc *vc = [[abc alloc] init];
[self.navigationController pushViewController:vc animated:YES];
但尚未实现数据传递。有人可以帮忙吗?
答案 0 :(得分:0)
在abc类中添加字符串类型的属性,如下所示:
@property (nonatomic, strong) NSString *passedString;
在初始化viewcontrller对象之后的代码中,将详细信息传递给属性,如下所示:
abc *vc = [[abc alloc] init];
vc. passedString = @"Pass The String Value Here." //If you pass empty string it would show the empty sting in abc ViewController
[self.navigationController pushViewController:vc animated:YES];
希望这会有所帮助。