我正在尝试创建导航到同一个类的NavigationController,所以这意味着如果我有UITableView,我可以深入了解它。
我的代码在NewView类中是:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle: nil];
NewView *nvc = [storyboard instantiateViewControllerWithIdentifier:@"newView"];
nvc.mainText = cell.textLabel.text;
nvc.level = self.level+1;
[self.navigationController pushViewController:nvc animated:YES];
}
每件事情都运作良好,但是当我测试了本乐器时,我发现了一些堆增长。我有什么不对吗?
由于