Interesting UIPopoverController in iOS-iPad

Source: Internet
Author: User

 

Effect:

 

To successfully display a UIPopoverController, follow these steps:

Because UIPopoverController directly inherits from NSObject and does not have visualization capabilities, the content above UIPopoverController must be provided by another controller inherited from UIViewController. This is called "content controller"

 

 @interfaceQCLocationButton() <UIPopoverControllerDelegate>        UIPopoverController *  }

 

     QCCityListViewController *cityList =    _popover = [[UIPopoverController alloc] initWithContentViewController:cityList];

 

 

How much screen space is displayed

There are two ways to set the content size:

       _popover.popoverContentSize = CGSizeMake(, );

 

 

From where

You can set the display position in either of the following ways:

This method needs to pass in a CGRecView, that is to say, the CGRect value of the coordinate origin (0, 0) in the upper left corner of the View is relative to the first method:

(2) The second method is:

 

The arrow points to a UIBarButtonItem.

If the screen of the iPad is rotated and the position displayed by UIPopoverController may change, you need to rewrite a method of the controller.

In the preceding method, override the position displayed by UIPopoverController.

                    [_popover presentPopoverFromRect:self.bounds inView:self permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.