在一个类中,有一个包含所有朋友及其 ID 的列表。现在,当您单击 UITableView 中的项目时,会出现聊天 ( [self performSegueWithIdentifier: @"showChat" sender: self];
)。但在 ChatViewController 类中,我需要从 FirstViewController 访问变量 userID。我尝试了在互联网上找到的所有内容,但总是出错或变量为空。在 FirstViewController 中是一个 NSString userid
,那么如何在 ChatViewController.m 中访问它?我尝试制作变量@public
,我尝试@property
使用 readwrite 等等,但它不起作用。例如这个:
FirstViewController *fvc = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
userID = fvc.userID;
只是给出一个空字符串..
感谢帮助!