我一直有一個複選框圖像添加到我的uitableviewcell和切換選中和未選中圖像的問題。在uitableviewcell中切換複選框圖像
我簡單的代碼是:
-(UITableViewCell *)tableView:(UITableView *)todoTable cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [self.todoTable dequeueReusableCellWithIdentifier: SimpleTableIdentifier];
if (!cell) {
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier] autorelease];
}
cell.textLabel.text = [self.todoList objectAtIndex:indexPath.row];
return cell;
}
,我試着從here
,使溶液中加入但我不知道我該把 interface ToggleImageControl : UIControl
我以爲我把它在我的viewcontroller相同的頭文件?
還我試圖把在
ToggleImageControl *toggleControl = [[ToggleImageControl alloc] initWithFrame: <frame>];
toggleControl.tag = indexPath.row; // for reference in notifications.
[cell.contentView addSubview: toggleControl];
到我上面的代碼,我會得到,因爲接口的實現沒有找到的ToggleImageControl
引用錯誤,我怎麼能解決這個問題?
謝謝。