5
我需要拖動和我的儀表板將按鈕拖放我可以拖動和使用下面的代碼如何使UIbutton在UIView內拖動?
- (void)viewDidLoad {
[super viewDidLoad];
[eventButton addTarget:self action:@selector(draggedOut:withEvent:)forControlEvents:UIControlEventTouchDragOutside |UIControlEventTouchDragInside];
}
- (void) draggedOut: (UIControl *) c withEvent: (UIEvent *) ev {
CGPoint point = [[[ev allTouches] anyObject] locationInView:self.view];
if(point.y > 22 && point.y <300)
c.center = CGPointMake(237, point.y - c.bounds.size.height/2 -5);
}
下降的按鈕,但我需要同時拖放我需要更改按鈕的位置過於
注:我寫的代碼只有一個按鈕
請幫我要我的問題