无法添加 UITextViewCell 的 accessoryType

Unable to add UITextViewCell's accessoryType

我需要获取 UITableView 单元格的可寻址性,以便在用户之前选择该行时设置复选标记。最初,用户检查 tableViewCell,我将其移至 textField 并将其存储在 Core Data 中。现在,如果用户想要更改 UITableView 中的某些内容,我希望能够显示已选中或未选中的内容。

所以,我有一个 UITableView,我在 UIPopover 中显示(在 -cellForRowAtIndexPath 之外);如果特定单元格的文本值等于 NSArray 中的元素,我想将单元格的 accessoryType 设置为选中。这是我的 UPDATED 代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  {

//  get the timeFormat
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSMutableDictionary *preferencesDict = [[userDefaults dictionaryForKey:@"preferencesDictionary"] mutableCopy];
int iTimeFormat = [[preferencesDict objectForKey:@"timeFormat"] intValue];  //  set timeFormat

if(tableView.tag == kServicesTableView) {  //  services array

    static NSString *CellIdentifier = @"servicesCell";  //  servicesCell is just an identifier; not used that I can tell
    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell
    SingletonServicesArray *sharedServicesArray = [SingletonServicesArray sharedServicesArray];  //  initialize

    [cell.textLabel setText:[sharedServicesArray.globalServicesArray objectAtIndex:indexPath.row]];

    if( ![soServices hasText] )  {  //  no text in text box
        for (int i = 0; i < sharedServicesArray.globalServicesArray.count; i++) {
            NSIndexPath *path = [NSIndexPath indexPathForRow:i inSection:0];

            //  if row has been checked, remove the check
            UITableViewCell *cell = [servicesTableView cellForRowAtIndexPath:path];
            if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
                cell.accessoryType = UITableViewCellAccessoryNone;
                 break;
            }
        }
    }
    else  {  //  not empty
        for (int i = 0; i < sharedServicesArray.globalServicesArray.count; i++) {
            NSIndexPath *path = [NSIndexPath indexPathForRow:i inSection:0];
            UITableViewCell *cell = [servicesTableView cellForRowAtIndexPath:path];

            //  if row is in soServices textfield, add a checkmark
            if ([soServices.text containsString: sharedServicesArray.globalServicesArray[i]])  {
                cell.accessoryType = UITableViewCellAccessoryCheckmark;
                break;
            }
        }
    }

    return cell;

}

没用;我确定至少有两个服务在数组中,所以我应该有两个带有复选标记的单元格;我越来越紧张了!我如何让它正常工作?

如果我没看错,这个 cellForRowAtIndexPath 正在更新不同 tableView 的单元格。将上述代码添加到需要更新的tableView的cellForRowAtIndexPath中会更符合逻辑。

如果您尝试更新该 tableView 的单元格,则以下代码将不起作用:

for (int i = 0; i < sharedServicesArray.globalServicesArray.count; i++) {
        NSIndexPath *path = [NSIndexPath indexPathForRow:i inSection:0];
        UITableViewCell *cell = [servicesTableView cellForRowAtIndexPath:path];

        //  if row is in soServices textfield, add a checkmark
        if ([soServices.text containsString: sharedServicesArray.globalServicesArray[i]])  {
            cell.accessoryType = UITableViewCellAccessoryCheckmark;
            break;
        }
    }

相反,你会写:

for (int i = 0; i < sharedServicesArray.globalServicesArray.count; i++) {
    //  if row is in soServices textfield, add a checkmark
    if ([soServices.text containsString: sharedServicesArray.globalServicesArray[i]])  {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
        break;
    }
}