-1

嗨,我想在我的应用程序中移动一个 uibutton,就像我们在 iphone 中有辅助触摸一样,我想在我的应用程序中使用这种按钮。如果可以的话,请帮助代码是一些链接

4

1 回答 1

0

这个问题被问了很多次......这是答案

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

        UITouch *touch = [[event allTouches] anyObject];
        CGPoint touchLocation = [touch locationInView:self.view];
        button.frame.x = touchlocation.x;
        button.frame.y = touchlocation.y;
    }
于 2015-11-19T04:42:47.883 回答