I create a label in my iPhone application as:
UILabel * lab=[[UILabel alloc]initWithFrame:CGRactMake(100.0,100.0,100.0,10.0)];
lab.text=@"1 2 3 4 5 6 7 8 9 0";
And also added window as subview.
Now this label appearing in my view as: 1 2 3 4 5 6 7 8 9 0
I want it as:
1
2
3
4
5
6
7
8
9
0
I mean it will appear as portrait mode. Is it possible or not?
Or can we draw a char then rotate?