为了测试这个,我创建了一个新的基于VIEw的应用程序项目,在Interface Builder中拖出一个UItableVIEw,并将视图控制器设置为表视图的数据源和委托,并将以下代码放在视图控制器中:
- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *) tableVIEw { return 1;}- (NSInteger)tableVIEw:(UItableVIEw *) tableVIEw numberOfRowsInSection:(NSInteger) section { return 12;}- (UItableVIEwCell *)tableVIEw:(UItableVIEw *) tableVIEw cellForRowAtIndexPath:(NSIndexPath *) indexPath { static Nsstring *cellID = @"aCellID"; UItableVIEwCell *aCell = [tableVIEw dequeueReusableCellWithIDentifIEr:cellID]; if (!aCell) { aCell = [[[UItableVIEwCell alloc] initWithStyle:UItableVIEwCellStyleDefault reuseIDentifIEr:cellID] autorelease]; } aCell.textLabel.text = [Nsstring stringWithFormat:@"Cell %d",indexPath.row +1]; return aCell;}- (voID)tableVIEw:(UItableVIEw *)tableVIEw dIDSelectRowAtIndexPath:(NSIndexPath *)indexPath { UItableVIEwCell *aCell = [tableVIEw cellForRowAtIndexPath:indexPath]; [aCell setSelected:NO animated:YES];}
当运行它(在模拟器或设备上)时,如果我要点击任何单元格(例如单元格12),它将被选中并取消选择.在此之后,如果当前选择的表格中没有单元格,如果我滚动视图以便最近选择的单元格(在这种情况下为12)离开屏幕,则当它再次出现时将再次选择它.
这是UItableVIEw的预期默认行为吗?或者我的实施中可能出错?在这种情况下取消选择此单元格的最佳方法是什么?
解决方法 我花了一个时间来要求自己解决这个问题:我的问题是使用UItableVIEwCell方法setSelected:而不是使用UItableVIEw方法deselectRowAtIndexPath:.
总结以上是内存溢出为你收集整理的cocoa-touch – 在屏幕上滚动时重新选择UITableViewCell全部内容,希望文章能够帮你解决cocoa-touch – 在屏幕上滚动时重新选择UITableViewCell所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)