我在UIImageView
内有一个UITableViewCell
,当我选择cell
时imageView
改变了他们的位置:
这是 iOS 的错误还是我做错了?
修改:didSelectRowAt
代码:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let list = indexPath.section == 0 ? subscribed****s : other****s
if (list == subscribed****s) {
// Removed line that was setting a variable inside a class
performSegue(withIdentifier: "segueNameRemoved", sender: self)
} else {
if (array.contains(removedValue)) {
// Removed line that was setting a variable inside a class
performSegue(withIdentifier: "segueNameRemoved", sender: self)
} else {
// TODO
// This is where the code ended and the image position was changed
}
}
}
答案 0 :(得分:0)
目前我遇到了这个问题。我发现了我的理由。也许也是你的原因。
请勿调用您的imageView" imageView"。
再称呼它。
因为UITableViewCell有自己的imageView。