按照你的描述似乎是在cellForRowAtIndexPath:
這個 delegate 裡加 button
最直接解決的方法
在 cell.contentView addSubview: 之前
加入
for (UIView *subview in cell.contentView.subviews) {
[subview removeFromSuperview];
}
試試看吧XD
※ 引述《yoyostar1990 (~Yoyo~)》之銘言:
: 用tableviewcell來顯示資料庫資料
: 而每筆資料有個button可以選擇
: 但有default資料
: default資料不想讓他有button
: 不知道要怎麼實現
: 原本是使用indexPath.row > 3 才加button
: 但只有剛進去是正確的
: 上下滑動後全部都會加到button
: 感覺好像是indexPath.row會變動的樣子
: 加上tag也是一樣 滑動後就失敗
: 要怎樣才能固定呢