我想在tableViewCell上执行perfrom
问题是 - 如果我点击单元格(当大小(375 * 667)时它必须执行一个动作,如果我点击单元格(当大小(375 * 300)必须执行其他操作时
答案 0 :(得分:2)
只需检查尺寸......
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if (tableView.cellForRowAtIndexPath(indexPath)?.frame.height == 667) {
//do something
} else if (tableView.cellForRowAtIndexPath(indexPath)?.frame.height == 300) {
//do something else
}
}