时间:2021-05-20
在我们日常开发的过程中难免会碰到一些选项的需求,下面是我针对我们该次需求做的一个小的Demo,闲话不多说了,上图片,上代码。
这样在我们选择上面一个Cell进行点击的时候,我会通过一个代理把数据传递到下面的页面,下面是代码
//// LCAlertListView.h// MeiMeiDu//// Created by 韩伟佳 on 16/4/6.// Copyright © 2016年 LangCuang. All rights reserved.// #import <UIKit/UIKit.h>@class LCAlertListView; @protocol LCAlertListViewDelegate <NSObject> -(void)alertListView:(LCAlertListView*)view didSelectedRow:(NSInteger)row; @end @interface LCAlertListView : UIView<UITableViewDataSource, UITableViewDelegate> -(instancetype)initWithFrame:(CGRect)frame datas:(NSArray*)datas;-(instancetype)initWithFrame:(CGRect)frame datas:(NSArray*)datas count:(NSArray*)counts;@property(nonatomic, strong) id<LCAlertListViewDelegate> delegate;@end下面是具体实现
//// LCAlertListView.m// MeiMeiDu//// Created by 韩伟佳 on 16/4/6.// Copyright © 2016年 LangCuang. All rights reserved.// #import "LCAlertListView.h"#import "NoFreeCell.h" static CGFloat TableViewHeight ; @implementation LCAlertListView{ UITableView* mTableView; NSArray* tableData; NSArray* visiableData; NSArray* visiableCount; UIButton* backgroundBtn;} -(instancetype)initWithFrame:(CGRect)frame datas:(NSArray*)datas{ if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor clearColor]; backgroundBtn = [[UIButton alloc] initWithFrame:frame]; backgroundBtn.backgroundColor = RGBA(88, 88, 88, 0.8); [backgroundBtn addTarget:self action:@selector(dismiss) forControlEvents:UIControlEventTouchUpInside]; [self addSubview:backgroundBtn]; tableData = datas; TableViewHeight = (datas.count + 1) * 44 + 20; mTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, kScreenHeight, kScreenWidth, TableViewHeight) style:UITableViewStylePlain]; [mTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"]; mTableView.delegate = self; mTableView.dataSource = self; [self addSubview:mTableView]; [UIView animateWithDuration:.25 animations:^{ [mTableView setFrame:CGRectMake(0, kScreenHeight - TableViewHeight, kScreenWidth, TableViewHeight)]; } completion:^(BOOL finished) { }]; } return self;}-(instancetype)initWithFrame:(CGRect)frame datas:(NSArray*)datas count:(NSArray*)counts{ if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor clearColor]; backgroundBtn = [[UIButton alloc] initWithFrame:frame]; backgroundBtn.backgroundColor = RGBA(88, 88, 88, 0.8); [backgroundBtn addTarget:self action:@selector(dismiss) forControlEvents:UIControlEventTouchUpInside]; [self addSubview:backgroundBtn]; visiableData = datas; visiableCount = counts; TableViewHeight = (datas.count + 1) * 44 + 20; mTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, kScreenHeight, kScreenWidth, TableViewHeight) style:UITableViewStylePlain]; [mTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"]; mTableView.delegate = self; mTableView.dataSource = self; [self addSubview:mTableView]; [UIView animateWithDuration:.25 animations:^{ [mTableView setFrame:CGRectMake(0, kScreenHeight - TableViewHeight, kScreenWidth, TableViewHeight)]; } completion:^(BOOL finished) { }]; } return self;} - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ if(tableData.count > 0){ return [tableData count]; }else if (visiableCount.count > 0){ return [visiableCount count]; } return nil;} - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell* cell; NoFreeCell *doubleCell; if([tableData count] <= 3 && [tableData count] > 0){ cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath]; cell.textLabel.text = tableData[indexPath.row]; return cell; }else { static NSString *identifier = @"cell0"; doubleCell =[tableView dequeueReusableCellWithIdentifier:identifier]; if (doubleCell == nil){ doubleCell= [[NoFreeCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]; doubleCell.visibleRoleLabel.text = visiableData[indexPath.row]; doubleCell.showVisibleRoleLabel.text = visiableCount[indexPath.row]; } return doubleCell; } } -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ NSInteger row = indexPath.row; [self dismiss:row];} -(void)dismiss:(NSInteger) row{ if (_delegate && [_delegate respondsToSelector:@selector(alertListView:didSelectedRow:)]) { [_delegate alertListView:self didSelectedRow:row]; } [UIView animateWithDuration:.15 animations:^{ [mTableView setFrame:CGRectMake(0, kScreenHeight, kScreenWidth, TableViewHeight)]; } completion:^(BOOL finished) { [self removeFromSuperview]; }]; } -(void)dismiss{ [UIView animateWithDuration:.15 animations:^{ [mTableView setFrame:CGRectMake(0, kScreenHeight, kScreenWidth, TableViewHeight)]; } completion:^(BOOL finished) { [self removeFromSuperview]; }];}@end上面的NoFree 文件只是一个自定义的Cell,我们可以根据自己的需求自己设计,就不上传了,最后我们说说用法:
LCAlertListView* alertListView = [[LCAlertListView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight) datas:visibleRoleArray count:visibleRoleCountArray]; alertListView.delegate = self; [[[self.view superview] superview] addSubview:alertListView];下面是代理传值的使用
#pragma mark - LCAlertListViewDelegate-(void)alertListView:(LCAlertListView *)view didSelectedRow:(NSInteger)row{ if(didSelectedIndex == 0){ testVisibleRole = visibleRoleArray[row]; }else{ testData = datas[row]; } NSIndexPath *indexPath = [NSIndexPath indexPathForRow:didSelectedIndex inSection:0]; [_myTableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];}这样,我们的AlertTableVIew 就做好了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了jquery简单实现带渐显效果的选项卡菜单代码。分享给大家供大家参考。具体如下:带渐显效果的选项卡菜单,使用了jQuery共同完成的效果,鼠标点击
1、点击右上角的【齿轮】标志,打开菜单选择【Internet选项】; 2、在弹出的【Internet选项】窗口中选择【隐私】选项卡;将该选项卡下方的【启用
在实现Angularjs实现mvvm式的选项卡之前,先搬出我们常用的jquery实现。1、jquery实现简单粗暴的选项卡效果varnav=$(".tabs")
本文分享一个能够实现自动切换的选项卡功能,并给出它的具体实现过程。关于选项卡大家一定不会陌生,应用非常的频繁,通常选项卡都是需要点击或者划过才能够实现切换。代码
word高级选项在“word选项卡”里。具体步骤是: 1、点击“office按钮”,在弹出的下拉选项中的“word选项”。 2、在弹出Word选项对话框中,