Presentation Controllers usage (2), controllers

Source: Internet
Author: User

Presentation Controllers usage (2), controllers
Presentation Controllers usage (2) by Wu xueying



Model past:

- (IBAction)show:(id)sender {    SecondViewController *overlay = [[SecondViewController alloc] initWithCountry];    [self presentViewController:overlay animated:YES completion:nil];}

SecondViewController. m
- (instancetype)initContentView {    self = [super init];    if (self) {        [self setModalPresentationStyle:UIModalPresentationCustom];        self.view.backgroundColor = [UIColor clearColor];        self.contentContainerView = [[UIView alloc] initWithFrame:CGRectMake(20, 200, 280, 200)];        self.contentContainerView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.8];        self.contentContainerView.layer.cornerRadius = 5.0;        [self.view addSubview:self.contentContainerView];               self.closeButton = [UIButton buttonWithType:UIButtonTypeSystem];        self.closeButton.frame = CGRectMake(30, 30, 100, 100);        self.closeButton.tintColor = [UIColor whiteColor];        self.closeButton.titleLabel.font = [UIFont systemFontOfSize:13];        [self.closeButton setTitle:@"Close" forState:UIControlStateNormal];        [self.closeButton addTarget:self action:@selector(closeButtonPressed:) forControlEvents:UIControlEventTouchUpInside];        [self.contentContainerView addSubview:self.closeButton];    }    return self;}- (void)closeButtonPressed:(UIButton *)sender {    [self.presentingViewController dismissViewControllerAnimated:YES completion:nil];}


Related Article

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.