iOS自定义从底部弹上来的View

本文介绍了如何在iOS应用中实现一个自定义的底部弹出View,详细阐述了主要思路、程序实现步骤,包括封装ZLBounceView,添加所需视图,使用代理和模型传值,并提供了运行效果截图。
摘要由CSDN通过智能技术生成

在一些少数据没必要跳转下个界面,我们的产品大大就设计了在当前界面的底部弹上来一个View!

看下项目里截图:

项目截图.png

一、主要思路

1、首先封装这个自定义蒙层弹起View:  ZLBounceView

2、在ZLTuanNumView里添加你需要的视图 View

3、使用代理和模型传值

二、程序实现

Step1. 首先封装这个自定义蒙层弹起View: ZLBounceView

设置界面相关:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- ( void )setupContent {
     self.frame = CGRectMake(0, 0, UI_View_Width, ZLBounceViewHight);
     
     //alpha 0.0  白色   alpha 1 :黑色   alpha 0~1 :遮罩颜色,逐渐
     self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.4];
     self.userInteractionEnabled = YES;
     [self addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(disMissView)]];
     
     if  (_contentView == nil) {
                 
         _contentView = [[UIView alloc]initWithFrame:CGRectMake(0, UI_View_Height - ZLTuanNumViewHight, UI_View_Width, ZLBounceViewHight)];
         _contentView.backgroundColor = [UIColor whiteColor];
         [self addSubview:_contentView];
         // 右上角关闭按钮
         UIButton *closeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
         closeBtn.frame = CGRectMake(_contentView.width - 20 - 15, 15, 20, 20);
         [closeBtn setImage:[UIImage imageNamed:@ "guanbi" ] forState:UIControlStateNormal];
         [closeBtn addTarget:self action:@selector(disMissView) forControlEvents:UIControlEventTouchUpInside];
         [_contentView addSubview:closeBtn];
     }
}

展示从底部向上弹出的UIView(包含遮罩):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- ( void )showInView:(UIView *)view {
     if  (!view) {
         return ;
     }
     
     [view addSubview:self];
     [view addSubview:_contentView];
     
     [_contentView setFrame:CGRectMake(0, UI_View_Height, UI_View_Width, ZLBounceViewHight)];
     
     [UIView animateWithDuration:0.3 animations:^{
         
         self.alpha = 1.0;
         
         [_contentView setFrame:CGRectMake(0, UI_View_Height - ZLBounceViewHight, UI_View_Width, ZLBounceViewHight)];
         
     } completion:nil];
}

移除从上向底部弹下去的UIView(包含遮罩):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- ( void )disMissView {
     
     [_contentView setFrame:CGRectMake(0, UI_View_Height - ZLBounceViewHight, UI_View_Width, ZLBounceViewHight)];
     [UIView animateWithDuration:0.3f
                      animations:^{
                          
                          self.alpha = 0.0;
                          
                          [_contentView setFrame:CGRectMake(0, UI_View_Height, UI_View_Width, ZLBounceViewHight)];
                      }
                      completion:^( BOOL  finished){
                          
                          [self removeFromSuperview];
                          [_contentView removeFromSuperview];
                          
                      }];
     
}

.h 文件里露出方法:

1
2
//展示从底部向上弹出的UIView(包含遮罩)
- ( void )showInView:(UIView *)view;

现在的效果图:

576025-751dc87adcc70a9f.png


Step2. 在ZLBounceView里添加你需要的视图 View, 这里以我的 tableView 为例

1
<UITableViewDelegate, UITableViewDataSource>

自定义ZLBounceView:

1
2
3
4
5
6
7
8
         UITableView *detailTableView = [[UITableView alloc] init];
         detailTableView.backgroundColor = [UIColor clearColor];
         detailTableView.frame = CGRectMake(0, CGRectGetMaxY(partner.frame), UI_View_Width, ZLBounceViewHight - tuan.frame.size.height - partner.frame.size.height - 50 - 20);
         [_contentView addSubview:detailTableView];
         detailTableView.delegate = self;
         detailTableView.dataSource = self;
         self.detailTableView = detailTableView;
         self.detailTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

UITableViewDelegate: 这里用假数据测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
     
     static  NSString *ID = @ "cell" ;
     
     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
     
     if  (cell == nil) {
         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ID];
         
         cell.backgroundColor = [UIColor clearColor];
         
         cell.textLabel.font = [UIFont systemFontOfSize:13];
         cell.textLabel.textColor = ZLColor(102, 102, 102);
         cell.detailTextLabel.font = [UIFont systemFontOfSize:13];
         cell.detailTextLabel.textColor = ZLColor(102, 102, 102);
     }
     cell.selectionStyle = UITableViewCellSelectionStyleNone;
     
     // 假数据
     cell.textLabel.text = [NSString stringWithFormat:@ "%ld" , ( long )indexPath.row];
     cell.detailTextLabel.text = @ "已购" ;
     
     self.total.text = [NSString stringWithFormat:@ "总计:%@吨" , @ "100" ];
     
     return  cell;
}


Step3. 使用代理和模型传值

3.1 在当前ViewController中的所需按钮,添加点击事件

1
[testBtn addTarget:self action:@selector(testBtnClicked) forControlEvents:UIControlEventTouchUpInside];

3.2 添加点击事件则为创建当前弹起View

1
2
// 详情展开view
@property (nonatomic, strong) ZLBounceView *tuanNumView;
1
2
3
4
5
- ( void )testBtnClicked {
     
     _tuanNumView = [[ZLBounceView alloc]init];
     [_tuanNumView showInView:self.view];
}

3.3 我这里使用假数据,正常情况则是请求数据或者上个界面的数据用 Model 传过来

1
_tuanNumView.tuanModel = self.orderModel;


Step4. 加载从底部向上弹起的UIView; 点击一下遮罩或界面上关闭按钮,页面会自动下去(从上向下)

运行效果图如下:

运行效果.gif

三、其他补充

压缩文件截图:

压缩文件截图.png


目前是项目中直接操作, 界面性问题可以根据自己项目需求调整即可, 具体可参考代码, 项目能够直接运行!

如需看详情版,请到这里下载

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值