I have a UITextField object with the text property set to "hi". However these two lines have no affect on where "hi" is located
myUITextObject.contentVerticalAlignment = UIControlContentVerticalAlignment.Center
myUITextObject.contentHorizontalAlignment = UIControlContentHorizontalAlignment.Center
Is this a bug in Swift? If so how do I go about logging this as a bug so Apple can fix it in the next Swift release?
You would want to write it like this:
myUITextObject.textAlignment = .center
(Edited to change from .Center to .center)
What you're looking for is the textAlignment property; try this:
myUITextObject.textAlignment = NSTextAlignmentCenter;
Another way to do it, is by using the storyboard.
In fact there is a Vertical and Horizontal Control that you can use for align your element inside the UITextField
.
In the case above that align the text to the top left:
Hope it helps,
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With