Dynamic attached UILabel is not moving.

Posted by coure06 on Stack Overflow See other posts from Stack Overflow or by coure06
Published on 2010-06-03T04:44:39Z Indexed on 2010/06/03 5:14 UTC
Read the original article Hit count: 176

Filed under:
|

I have attached a UILabel to view. Now i want to move that label but its not working. here is my code

UILabel *tick = (UILabel *)[self.view viewWithTag:tag];
CGRect frame = tick.frame;
frame.origin.x = newVal;
frame.origin.y = newVal;
I can change text value of the UILabel tick but how can i move it here and there?

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about iphone-sdk