无法添加UITextViewCell的accessoryType

时间:2015-03-08 21:27:40

标签: objective-c uitableview ios8.1

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

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

- (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;

}

它不工作;我肯定知道至少有两个服务在数组中,所以我应该有两个带有复选标记的单元格;我得到了zilch!如何使其正常工作?

1 个答案:

答案 0 :(得分:1)

如果我正确使用,则此cellForRowAtIndexPath正在更新DIFFERENT 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;
    }
}