Dev*_*ang 5

[label setFrame:CGRectMake(278, 32, 42, 29)];    // Right most position  
[UIView beginAnimations:nil context:nil]; 

[UIView setAnimationDuration:0.5]; 
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[label setFrame:CGRectMake(0, 20, 42, 29)];  //left most position
[UIView commitAnimations];
Run Code Online (Sandbox Code Playgroud)