Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 UIImageView 中显示了 UITableView。但我无法使用在 indexpath 处选择行。
谁能帮我解决这个问题。
感谢您的关注。
默认情况下,UIImageView 没有启用交互。这可能就是您没有收到表格视图的触摸事件的原因。尝试添加:
[imageView setUserInteractionEnabled:YES];