真的需要将这个CGRect代码从Objective-C转换为Swift

时间:2014-07-30 06:59:32

标签: ios objective-c position swift translate

我需要在点击它时更改UIButton的位置(iOS)。我找到了一个教程:

-(IBAction) move {    
   CGRect frame = [buttonMove frame];    
   frame.origin.x = 100;    
   frame.origin.y = 10;    
   [buttonMove setFrame: frame];    
}

有人可以帮我翻译给Swift吗? Link to the tutorial

1 个答案:

答案 0 :(得分:1)

这里没什么难的,只是语法问题

@IBAction func move() {
    var frame = buttonMove.frame;
    frame.origin.x = 100
    frame.origin.y = 10;
    buttonMove.frame = frame;
}