我需要在点击它时更改UIButton
的位置(iOS)。我找到了一个教程:
-(IBAction) move {
CGRect frame = [buttonMove frame];
frame.origin.x = 100;
frame.origin.y = 10;
[buttonMove setFrame: frame];
}
有人可以帮我翻译给Swift吗? Link to the tutorial
答案 0 :(得分:1)
这里没什么难的,只是语法问题
@IBAction func move() {
var frame = buttonMove.frame;
frame.origin.x = 100
frame.origin.y = 10;
buttonMove.frame = frame;
}