码迷,mamicode.com
首页 > 移动开发 > 详细

ios 中的半屏幕底部弹出框

时间:2015-03-06 18:33:11      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:

static UIView *modalView;
if
(modalView) { [modalView removeFromSuperview]; modalView = nil; return; } CGRect screen = [[UIScreen mainScreen] bounds]; CGRect bounds = CGRectMake(screen.origin.x, screen.origin.y, screen.size.width, screen.size.height/2); modalView = [[UIView alloc] initWithFrame:bounds]; modalView.opaque = NO; modalView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5f]; UILabel *label = [[UILabel alloc] init]; label.text = @"Modal View"; label.textColor = [UIColor whiteColor]; label.backgroundColor = [UIColor clearColor]; label.opaque = NO; [label sizeToFit]; [label setCenter:CGPointMake(modalView.frame.size.width / 2, modalView.frame.size.height / 2)]; [modalView addSubview:label]; [self.view addSubview:modalView];

 

若要从xib众加载UI的外观,则:

if (popupViewController) {
        [popupViewController.view removeFromSuperview];
        popupViewController = nil;
        return;
    }
    
    popupViewController = [[UIViewController alloc] initWithNibName:@"View" bundle:nil];
    [self.view addSubview:popupViewController.view];

 

如果需要从底部的动画向上slide in的动画:

UIView *popView = popupViewController.view;
    CGRect orig = popView.bounds;
    CGRect screen = [[UIScreen mainScreen] bounds];
    [popView setFrame:CGRectMake(0, screen.size.height, orig.size.width, orig.size.height)];
    [UIView beginAnimations:@"animatePopView" context:nil];
    [UIView setAnimationDuration:0.4];
    [popView setFrame:CGRectMake(0, screen.size.height-orig.size.height, orig.size.width, orig.size.height)];
    [UIView commitAnimations];

 

ios 中的半屏幕底部弹出框

标签:

原文地址:http://www.cnblogs.com/welhzh/p/4318756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!