我一直在关注这个例子
http://nscookbook.com/2013/02/ios-programming-recipe-13-using-property-lists-plists/
我被困住了!
在你的 detailViewController 中创建一个属性,在我的例子中是 webViewController。
@property (nonatomic, strong) NSString *urlString;
单击 tableView 单元格时,通过设置此属性将您的 plist 字符串传递给您的 detailViewController。示例代码:
WebViewController *webViewController = [WebViewController new];
webViewController.urlString = urlString;
[self.navigationController pushViewController:webViewController animated:YES];
就是这样,现在您的 detailViewController 知道这个传递的字符串。