How can I make this UIView
behavior?
I see this in several apps and it's interesting – is this standard or custom?
How can I make this UIView
behavior?
I see this in several apps and it's interesting – is this standard or custom?
You have a third party plugin for sliding menu: https://github.com/mikefrederick/MFSideMenu
Or you could implement this tween by yourself with
CGRect frame = yourView.frame;
frame.origin.x = 0;
[UIVIew animateWithDuration:1.0f animations:^(void){
frame.origin.x += 100; //<-Here's the animation
yourView.frame = frame;
}];