我一直试图在我的UITableViewCell中将UISwitch显示为附件视图,但它只是不会显示出来。我想可能有一些我在监督的事情。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = self.tableView.dequeueReusableCellWithIdentifier("enabledCell") as? UITableViewCell
if cell == nil {
cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "enabledCell")
}
cell!.textLabel?.text = "Alarm enabled"
var enabledSwitch = UISwitch(frame: CGRectZero) as UISwitch
enabledSwitch.on = true
cell!.accessoryView = enabledSwitch
return cell!
}