UITwitch在UITableViewCell中使用Swift

时间:2014-09-17 15:56:37

标签: ios uitableview swift uiswitch

我一直试图在我的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!
}

0 个答案:

没有答案