各位程序员大家好!我有一个需要帮助的挑战.我使用Custom Style Cell构建了一个表.
这个单元格只有一个Label和UISwitch.标签显示名称,交换机显示他们是否是管理员.这非常有效.我的挑战是如何以及在何处将代码置于更改开关时作出反应.
所以,如果我点击开关将其从关闭更改为打开,我可以在哪里打印人名?如果我可以得到打印的名称,我可以自己做PHP / sql代码.谢谢,这是我的代码片段.
override func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell: UITableViewCell = tableView.dequeueReusableCellWithIdentifier(kCellIdentifier) as UITableViewCell let admin = self.admin[indexPath.row] let text1a = admin.FirstName let text1aa = " " let text1b = admin.LastName let text1 = text1a + text1aa + text1b (cell.contentView.viewWithTag(1) as UILabel).text = text1 if admin.admin == "yes" { (cell.contentView.viewWithTag(2) as UISwitch).seton(true,animated:true) } else if admin.admin == "no" { (cell.contentView.viewWithTag(2) as UISwitch).seton(false,animated:true) } return cell }