So I have a uipickerview with rows that only contain the number 0-24 and it looks a bit silly since the numbers are left aligned leaving a huge gap on the right of the pickerview.
Is there an easy way to center align text in a uipickerview?
|
So I have a uipickerview with rows that only contain the number 0-24 and it looks a bit silly since the numbers are left aligned leaving a huge gap on the right of the pickerview. Is there an easy way to center align text in a uipickerview? |
|||||||
|
or something like this. |
|||||||||||
|
|
You can implement this delegate method, which returns a CGFloat
This is called on the picker view to determine row width. |
|||
|
|
A little easier now in iOS 6... There's a new method you can implement to return an attributed string... And you can define alignment in attributed strings.
|
|||
|
|
|
No property of picker having set alignment capability. so you need to hard code for this. see this code
|
|||
|
|
|
Remember, the view in
is actually a UITableViewCell, so you can work with it like:
|
|||||||
|
|
Below one also working fine -
Cheers!! |
|||
|
|