我想制作一个像矩形的视图(extens UIView),将它添加到主视图中。 当应用运行时,我可以调整大小或旋转,缩放 ...矩形。
我该怎么办?我创建了一个Rectangle_View,并尝试在web中阅读更多教程,但我无法得到它的解决方案。
非常感谢
答案 0 :(得分:1)
您可以使用以下方法管理触摸:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
请记得致电super
将邮件转发给下一位回复者!!
查看有关UIResponder的文档。 我还建议您查看this sample code,其中演示了如何处理触摸,包括多次触摸以及如何移动多个对象。