我設置了一個表與我有這樣的代碼:有沒有在UIButtton本地進行操作的方法?
UIButton *done = [[UIButton alloc]initWithFrame:CGRectMake(20, 25, 40, 40)];
[done setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
[done addTarget:self action:@selector(done:) forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:done];
return cell;
這並不怎麼一回事,因爲此按鈕的工作只不過是在這個範圍內聲明,我想簡單地改變其對這個圖片的點擊
不顧原來的問題(其他人已經給了一個很好的答案)...如果cell是'UITableViewCell',請將cell.contentView作爲子視圖添加到單元格中。 :-) –