这是 ProfilTableViewController.m 的表视图委托中我的 If 语句的摘录:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *currentCell =(UITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
// Navigation logic may go here. Create and push another view controller.
if (currentCell.textLabel.text==@"phrase") {
MainViewController *phraseViewController =[[MainViewController alloc] initWithNibName:@"mesPhrase" bundle:nil];
[self.navigationController pushViewController:phraseViewController animated:YES];
}
在情节提要上,我创建了从 ProfilTVC 单元到 MainViewController 的推送,并将 TableViewController 更改为“MainViewController”
当我运行应用程序时,单击 ProfilViewController 中的单元格不会执行任何操作:/ wtf?
干杯,路易斯