touchesMoved メソッドをオーバーライドして、iOS でドラッグ可能な UIButton を実装しようとしています。ボタンが表示されますが、ドラッグできません。何が欠けていますか? これは私が言及したものです
これは私の .h ファイルです。
@interface ButtonAnimationViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIButton *firstButton;
そして.mファイル。
@implementation ButtonAnimationViewController
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint pointMoved = [touch locationInView:self.view];
self.firstButton.frame = CGRectMake(pointMoved.x, pointMoved.y, 73, 44);
}