tags:

views:

46

answers:

2

How to change UILabel position at runtime ??

Thanks.

+1  A: 
label.frame = CGRectMake(...);

or

label.center = CGPointMake(...);
Vladimir
A: 

label.frame = CGRectMake(newX, newY, label.frame.size.width, label.frame.size.height);

You can also change width and height if needed.

AlexejK