スクロールするたびにセルを含むテーブル ビューがあります。
そして、このコードを緑色にマークします:let button = cell.viewWithTag(1009) as! UIButton
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("ChecklistItem") as! UITableViewCell
let label = cell.viewWithTag(1000) as! UILabel
let button = cell.viewWithTag(1009) as! UIButton
button.tag = indexPath.row
...
}