iOS6、7、8、9新特性总汇和适配说明 (18)

    UIModalPresentationNone NS_ENUM_AVAILABLE_IOS(7_0) = -1,

    

};

 

@property (nonatomic,readonly) UIPopoverPresentationController *popoverPresentationController NS_AVAILABLE_IOS(8_0);

 

[Format Time: 0.0041 seconds]

使用示例:

Crayon Syntax Highlighter v2.7.1

// 1.创建内容控制器

UITableViewController *contentVc = [[UITableViewController alloc] init];

 

// 2.1 设置呈现方式

contentVc.modalPresentationStyle = UIModalPresentationPopover;

 

// 2.2设置在导航栏的左边按钮呈现

contentVc.popoverPresentationController.barButtonItem = self.navigationItem.leftBarButtonItem;

 

// 3.呈现

[self presentViewController:contentVc animated:YES completion:nil];

1

2

3

4

5

6

7

8

9

10

11

 

// 1.创建内容控制器

UITableViewController *contentVc = [[UITableViewController alloc] init];

 

// 2.1 设置呈现方式

contentVc.modalPresentationStyle = UIModalPresentationPopover;

 

// 2.2设置在导航栏的左边按钮呈现

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwgywp.html