ios tableView如何彻底删除cell

比如删了北京以后,我回到了先前一个页面,再回到这个tableView的时候,北京还在。如何彻底删除cell?这是代码-(NSMutableArray*)cityWeath... 比如删了北京以后,我回到了先前一个页面,再回到这个tableView的时候,北京还在。如何彻底删除cell?
这是代码

- (NSMutableArray *)cityWeather
{
if (self.city == nil)
self.city = [[NSMutableArray alloc] initWithObjects:@"北京",@"上海",@"广州",@"深圳",@"重庆",@"厦门",@"香港",@"福州",@"郑州",@"西安",@"成都",nil];
return _city;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _city.count;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete ) {
[self.city removeObjectAtIndex:indexPath.row];
NSArray *indexPaths = [NSArray arrayWithObject:indexPath];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView reloadData];
}
}
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
if (sourceIndexPath != destinationIndexPath) {
id object = [self.city objectAtIndex:sourceIndexPath.row];
[self.city removeObjectAtIndex:sourceIndexPath.row];

if (destinationIndexPath.row > [self.city count]) {
[self.city addObject:object];
}
else {
[self.city insertObject:object atIndex:destinationIndexPath.row];
}
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"lpCityWeather";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
NSString *aString = [self.city objectAtIndex:indexPath.row];
cell.textLabel.text = aString;
cell.detailTextLabel.text = [self.temperature objectForKey:aString];

return cell;
}
@end
展开
 我来答
受灾iWY23BS60
2014-09-12 · 超过57用户采纳过TA的回答
知道答主
回答量:174
采纳率:66%
帮助的人:54.8万
展开全部
你在数据里面是不是没有删除,打下断点看一下你的数据 。 或者是你删了数据没有刷新这个界面
追问
这个都试过了,不行
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式