私はjson webservice urlによって読み込まれるテーブルビューを持っています。私は目盛りに "UITableViewCellAccessoryCheckmark"を使用しています。複数のユーザーがtableviewを選択すると、選択したすべての行データを1つの変数に格納することができます。あなたが私を助けてくれますか?以下はコードです。NSStringにチェックされた行の値を格納する方法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
if ([self.arForIPs containsObject:indexPath]) {
[cell setAccessoryType:UITableViewCellAccessoryCheckmark];
}
else {
[cell setAccessoryType:UITableViewCellAccessoryNone];
}
NSString *imagefile1 = [media1 objectAtIndex:indexPath.row];
cell.textLabel.text=[story objectAtIndex:indexPath.row];
cell.detailTextLabel.text=[descriptiondesc objectAtIndex:indexPath.row];
cell.detailTextLabel.numberOfLines=2;
//cell.detailTextLabel.backgroundColor=[UIColor clearColor];
img=[UIImage imageNamed:@"icon.png"];
cell.imageView.image=img;
NSLog(@"BOOMMMM:%@",pileup);
return cell;
}
CUD uが保存する方法の例を欲しがります私は1つの変数のチェック行のデータを試みたが、私は不合理だった – kingston
行ごとに1つのオブジェクトに物事を格納するためのいくつかのコードが追加されました。 –
@PhilippeSabourin:私も同じ方法で実装しています。:) – Sarah