Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7979597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:49:03+00:00 2026-06-04T09:49:03+00:00

I would like to implement a menu as shown above. I’m a total iOS

  • 0

example of slide out menu

I would like to implement a menu as shown above. I’m a total iOS newbie. I’ve been searching for that kind of control since couple of days.

Can someone guide me step by step, from scratch?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T09:49:05+00:00Added an answer on June 4, 2026 at 9:49 am

    You can implement the above in following steps :-

    1>Left Menu view is a UIView added as a subview with various cutom UIButtons over it added as subview.

    2>Initially you have to set the frame so that only a particular part of the view is shown(Panel Part).

    3> On the click of indicator button , expand the frame to its full to show the buttons.

    4>On next click i.e(odd clicks) collase the frame.

    Above animation can be achieved using simple UIView Animation.

    Sample code(Original frame width=300,Height 300) :-

    yourMenuView.frame=CGRectMake(0,10,100,300);
    
    [yourViewController addSubview:yourMenuView];
    
    -(IBAction)expandMenu:(id)sender
    {
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.75];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
    CGRect frame=yourMenuView.frame;
    frame.size.width+=200;
    yourMenuView.frame=frame;
    [myview removeFromSuperview];
    [UIView commitAnimations];
    }
    
    -(IBAction)collapseMenu:(id)sender
    {
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.75];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
    CGRect frame=yourMenuView.frame;
    frame.size.width-=200;
    yourMenuView.frame=frame;
    [myview removeFromSuperview];
    [UIView commitAnimations];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

http://i1254.photobucket.com/albums/hh620/Mike_Mccone/menu.png I have a menu, linked above, that I would like to appear in
We would like to implement a web form that automatically saves content at regular
i would like to implement 'drawing modes' (in my own graphics library). That is
I would like to implement operations that is undoable in a short time after
I have a DataGrid (called TheGrid) that I would like to implement copy and
I have a control that has a label on it, that I would like
I'm working on a little program and would like to implement a menu in
How would one implement a custom auto-complete pop-up menu like Xcode has? At the
I would like to implement something similar to 37Signals's Yellow Fade effect. I am
I would like to implement some Drag-select functionality into a project of mine but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.