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.
当用户点击屏幕上的任意位置时,我想隐藏导航栏、状态栏和标签栏。此选项卡的视图是一个表格视图,但单元格处于非活动状态(它们存储图像和文本并且不执行任何操作)。
有没有一种方法可以检测 tableview 屏幕上的触摸?
在此先感谢您的帮助!
我在工作,所以我无法验证这一点,但 UITableView 是 UIResponder 的子类。您应该能够继承 UITableView 并覆盖 -touchesEnded:withEvent: 并从那里做任何您想做的事情。
希望有帮助。