首页 > 试题广场 >

触摸事件包括一下哪几种?()

[不定项选择题]
触摸事件包括一下哪几种?()
  • touchesBegan
  • touchesMoved
  • touchesCancelled
  • touchesEnded
点击的时候调用 - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event; // 点击之后不松手,移动的时候调用 - (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event; // 点击点离开屏幕的时候点用,点击结束 - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event; // 点击取消的时候调用:比如电话打入 - (void)touchesCancelled:(nullable NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event;
发表于 2018-11-22 07:50:19 回复(0)