目标C noob在这里。我正在从UITableViewCell链接到ViewController子类。在我的故事板上,我有一个包含UITableView的UIViewController以及一个标识符为“Subject”的自定义类SubjectViewController。
我还抓取所选单元格中包含的文本,将其添加到NSUserDefaults,并将其用作主题页面的标题。
当我启动应用程序时,第一次单击UITableViewCell时,SubjectViewController会完美启动。我在该页面上的任何功能都可以正常工作。然而,当我回到主屏幕,然后点击另一个UITableViewCell,应用程序冻结,我只收到消息“11db”。
以下是涉及的两种方法:
来自ViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// Store cell label in NSUserDefaults to later display as the title
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellID = cell.textLabel.text;
[defaults setObject:cellID forKey:@"sceneTitle"];
[defaults synchronize];
//Present subjects view controller
NSString * storyboardName = @"Main";
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle: nil];
SubjectViewController * subject = [storyboard instantiateViewControllerWithIdentifier:@"Subject"];
[self presentViewController:subject animated:YES completion:nil];
}
来自SubjectViewController.m
- (IBAction)subjectBackPressed:(id)sender {
NSString *storyboardName = @"Main";
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle: nil];
NSString *home = @"Head and Neck";
SubjectViewController * vc = [storyboard instantiateViewControllerWithIdentifier: home];
[self presentViewController:vc animated:YES completion:nil];
}
如果有更多的代码/信息有用,请告诉我,我会编辑这篇文章。
答案 0 :(得分:0)
我建议用self.dismissViewController解析当前视图或者将segue执行回UIViewController
答案 1 :(得分:0)
如果vc1是从主故事板加载的,则无需再次初始化。只需访问self.storyboard即可获得已分配的故事板实例。
如果您要展示vc2,则应通过解除它来删除它。后退行动应该是
[self dismissViewControllerAnimated:YES completion:nil];