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 9038105
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T09:24:33+00:00 2026-06-16T09:24:33+00:00

anyone know how to implement something like a viewController no full screen just like

  • 0

anyone know how to implement something like a viewController no full screen just like when we tap in search in the iPhone ?
I want that when the user make an swipe up a viewController (half height) be showed.
No segue !! I would like that the old view controller be showed at the same time.
Thanks in advance

  • 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-16T09:24:34+00:00Added an answer on June 16, 2026 at 9:24 am

    I Add this type of functionality for whole project, i add the QRView in window so user swip up the view from any view of project…

    See the Example of my code..

    Just set the UISwipeGestureRecognizer to your second view which you want to present like bellow…

     CATransition *animation = [CATransition animation];
        [animation setDelegate:self];   
        [animation setType:kCATransitionFade];
        [animation setDuration:0.5];
        [animation setTimingFunction:[CAMediaTimingFunction functionWithName:
                                      kCAMediaTimingFunctionEaseInEaseOut]];
        [[self.view layer] addAnimation:animation forKey:kAnimationKey];
        UISwipeGestureRecognizer *swipeGesture = [[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(addCustomBottomBar)] autorelease];
        swipeGesture.numberOfTouchesRequired = 1;
        swipeGesture.direction = (UISwipeGestureRecognizerDirectionDown);
        [yourViewController.view addGestureRecognizer:swipeGesture];/// use your view name here, its depends on your requirement
        UISwipeGestureRecognizer *swipeGestureTop = [[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(addCustomBottomBar)] autorelease];
        swipeGestureTop.numberOfTouchesRequired = 1;
        swipeGestureTop.direction = (UISwipeGestureRecognizerDirectionUp);
    
        [yourViewController.view addGestureRecognizer:swipeGestureTop];
    

    and this bellow method called when you swipe up view…

    Also just add one BOOL variable with name isViewPop and set it to NO in your viewDidLoad: method ..

    -(void)addCustomBottomBar{
    
        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:0.5];
        [UIView setAnimationTransition:UIViewAnimationTransitionNone forView:self.window cache:YES];
    
        if (isqrcodepop) {
            isViewPop=NO;
    
            yourViewController.view.frame=CGRectMake(0, 430, 320, 70);
        }
        else{
            isViewPop=YES;
    
            yourViewController.view.frame=CGRectMake(0, 210, 320, 270);
            [self.view bringSubviewToFront:yourViewController.view];
        }
        [UIView commitAnimations];
    }
    

    i hope this answer helpful for you…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how to implement 3d stacked groups of images like that in
I'd like to know if anyone knows how I can implement something like the
Does anyone know how to implement an action badge, like the ones seen below
Does anyone know if it is possible to implement TTS in iOS development like
I am new in Web Programming. I want to implement something like in facebook,
I want to implement something like what four square do when the application crashes
Anyone familiar with the emulator will know that during the loading phase the 'screen'
Does anyone know if it is possible to implement playback of an audio file
Does anyone know is there a way to implement Windows Live ID authentication into
Can anyone let me know how to implement this feature specified at http://vimeo.com/24475654 Specially

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.