1

How can I make this UIView behavior?

Step one – touch any setting button step tow – current window go to the left or right

I see this in several apps and it's interesting – is this standard or custom?

Rushi
  • 4,553
  • 4
  • 33
  • 46
George
  • 643
  • 9
  • 23
  • romaji... create UIView and add it on this button touch method for display – iPatel Feb 26 '13 at 11:48
  • 1
    Here is the list of open source custom controls like you want. http://stackoverflow.com/questions/7775195/splitview-like-facebook-app-on-iphone – limon Feb 26 '13 at 11:58

3 Answers3

2

Check below link and download the Source code :)

Check Link

Rushabh
  • 3,208
  • 5
  • 28
  • 51
1

It's a custom control. It's not a standard control of iOS. Here, is the example to start with.

Rushi
  • 4,553
  • 4
  • 33
  • 46
1

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;
}];
pbibergal
  • 2,901
  • 1
  • 17
  • 19