通过XIB文件在tableView到detailTableView之间导航

时间:2019-05-30 07:18:45

标签: ios objective-c

我有一个tableView。在单击特定行时,我想通过XIB将数据发送到另一个didSelectRowAtIndexPath文件。

目前,我可以通过此在XIB之间导航

 abc *vc = [[abc alloc] init];

 [self.navigationController pushViewController:vc animated:YES];

但尚未实现数据传递。有人可以帮忙吗?

1 个答案:

答案 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];

希望这会有所帮助。