为什么我添加的项目不能保存在内存中?当我回到RootViewController时,我的列表消失了,发生了什么?
添加和工作的代码......
- (IBAction) addButtonPressed: (id)sender {
NSLog(@"Add button pressed!");
addPosto *addposto = [[addPosto alloc] initWithNibName:@"postoDictionary" bundle:nil];
UINavigationController *addNavCon = [[UINavigationController alloc] initWithRootViewController:addposto];
addposto.postoArray = self.poscomb;
[self presentModalViewController:addNavCon animated:YES];
[addposto release];
[addNavCon release];
}
在RootViewController上选择行“Meus Postos”
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
postoLista *codigo = [[postoLista alloc] initWithNibName:@"postoLista" bundle:nil];
[self.navigationController pushViewController:codigo animated:YES];
[codigo release];
}
所以我需要知道在添加项目之后我是如何在内存上列出的,感谢关注!
爱德华多·帕克克尔。答案 0 :(得分:0)
我和巴西Instants Games的Leonardo谈过他实施单身并解决了我的问题,所以我认为就是这样!谢谢你的帮助!