cell = [tableVIEw dequeueReusableCellWithIDentifIEr:cellIDentifIEr];
如何强制编辑控件为每个单元格处于正确状态?它应始终处于默认的水平状态,除非我点击它以删除单元格.
编辑:这是单元格代码:
- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath { static Nsstring *cellIDentifIEr = @"WhateverIDentifIEr"; MyCell *cell = nil; //This IF statement fixes the problem,but then I'm not reusing the cells if (!tableVIEw.isEditing) { cell = [tableVIEw dequeueReusableCellWithIDentifIEr:cellIDentifIEr]; } if (!cell) { cell = [[[NSBundle mainBundle] loadNibnamed:@"MyCell" owner:self options:nil] objectAtIndex:0]; } //customize cell return cell;}解决方法 你在自定义单元格的prepareForReuse方法中调用[super prepareForReuse]吗?
这解决了我的问题.
总结以上是内存溢出为你收集整理的ios – UITableView – 在编辑模式下重用单元格全部内容,希望文章能够帮你解决ios – UITableView – 在编辑模式下重用单元格所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)