各位程序员大家好!我有一个需要帮助的挑战.我使用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 }
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。