在一个基于聊天的应用程序中,我有UITableView
一个显示所有朋友姓名的应用程序,didSelectRowAtIndex
我正在推动chatViewController
使用navigationcontroller
push
方法。
我有两个困惑:
1>当我推动时,chatViewController
我会这样做
chatViewController *cVc = [[chatViewController alloc]initWithFriendName:@"the name" andId:@"the id"];
可以有 10 个或 50 个或 100 个朋友,alloc init
每个朋友都呼唤是否正确?
2> 当用户点击返回按钮返回好友列表chatViewController's
时,当前实例将被销毁以释放内存时会发生什么情况?