How to change position UILabelat runtime
UILabel
Thank.
label.frame = CGRectMake(...);
or
label.center = CGPointMake(...);
label.frame = CGRectMake(newX, newY, label.frame.size.width, label.frame.size.height);
You can also change the width and height, if necessary.