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];
I can change text value of the UILabel tick but how can i move it here and there?
CGRect frame = tick.frame;
frame.origin.x = newVal;
frame.origin.y = newVal;