我有一些分段控件的问题:我有一个包含 10 个单元格的表格视图,并且所有单元格都有一个分段控件。
现在我的问题:如果我更改分段控件的选定索引并向上或向下滚动,则某些分段控件的选定索引会更改。
有谁知道什么是假的?
//编辑:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier;
CellIdentifier = @"editCell";
cellList[indexPath.row-1] = [[MSEditCardCell alloc] init];
cellList[indexPath.row-1] = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
return cellList[indexPath.row-1];
}