首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
touchesbegan专题
如何获取相应tableview中的touchesBegan事件
项目中使用了UITableViewController,里面有用到UITextView需要点击键盘外的地方来隐藏我的键盘 自定义一个uitableview,继承UITableView。重写touch事件 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [super touc
阅读更多...
UIScrollView响应touchesBegan事件
用过UIScrollView的都会发现UIScrollView不会响应touch事件,这样就无法在touchesEnd方法中做一些事情了,比如关闭键盘等等。其实写个category就可以解决这个问题了,直接上代码: @implementation UIScrollView (UITouchEvent) - (void)touchesBegan:(NSSet *)touches withEve
阅读更多...