CGPoint不能正确定位UIView

时间:2016-02-22 03:28:27

标签: ios swift

我正在处理一个基本的应用程序,由于某种原因,我无法使用CGPointMake使视图(textBox)居中。我知道textBox.center = self.view.center;将中心视图,但我不知道为什么CGPointMake不工作。我正在使用Swift。

    textBox.font = UIFont.systemFontOfSize(15)
    textBox.keyboardType = UIKeyboardType.Default
    textBox.textAlignment = NSTextAlignment.Center
    CGPointMake(187.5, 333.5)
    textBox.returnKeyType = UIReturnKeyType.Done
    self.view.addSubview(textBox)

1 个答案:

答案 0 :(得分:-1)

您可以通过此代码

来说明问题

CGPointMake(187.5, 333.5) 但是你没有将textBox的中心分配到这一点。 所以使用此代码

textBox.center = CGPointMake(187.5, 333.5);