iOS开发——UI篇&下拉弹出列表选择项效果
下拉弹出列表选择项效果
右边菜单中的按键,点击弹出一个列表可选择,选择其中一个,响应相应的事件并把文字显示在右边的菜单上;弹出下拉效果使用LMDropdownView插件,可以用POD进行加载pod ‘LMDropdownView’;LMDropdownView是把想要的视图赋给它;
源代码地址:https://github.com/JxbSir/YiYuanYunGou
效果如下:
![]() |
![]() |
1:在主页面先定义按键跟绑定视图(没写全的都是属性中定义了比如btnRigth,dropdownView等):
btnRigth = [UIButton buttonWithType:UIButtonTypeCustom];
[btnRigth addTarget:self action:@selector(btnRightAction) forControlEvents:UIControlEventTouchUpInside];
if(![OyTool ShardInstance].bIsForReview)
{
[self actionCustomNavBtn:btnRigth nrlImage:@"" htlImage:@"" title:@"全部分类▽"];
}
else
{
[self actionCustomNavBtn:btnRigth nrlImage:@"" htlImage:@"" title:[dicTypeName.allValues objectAtIndex:0]];
}
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:btnRigth];
AllProTypeView* tview = [[AllProTypeView alloc] initWithFrame:self.view.bounds];
tview.delegate = self;
//赋于下拉的里效果视图
dropdownView = [[LMDropdownView alloc] init];
dropdownView.menuBackgroundColor = [UIColor whiteColor];
dropdownView.menuContentView = tview;
2:其中对设置按键进行的封装:
- (void)actionCustomNavBtn:(UIButton *)btn nrlImage:(NSString *)nrlImage
htlImage:(NSString *)hltImage
title:(NSString *)title {
[btn setImage:[UIImage imageNamed:nrlImage] forState:UIControlStateNormal];
if (hltImage) {
[btn setImage:[UIImage imageNamed:hltImage] forState:UIControlStateHighlighted];
} else {
[btn setImage:[UIImage imageNamed:nrlImage] forState:UIControlStateNormal];
}
if (title) {
btn.titleLabel.font = [UIFont boldSystemFontOfSize:13];
[btn setTitle:title forState:UIControlStateNormal];
[btn setTitle:title forState:UIControlStateHighlighted];
[btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[btn setTitleColor:[UIColor whiteColor] forState:UIControlStateHighlighted];
}
[btn sizeToFit];
}
3:其中btnRightAction响应事件内容(主要用于显示跟隐藏下拉效果):
- (void)btnRightAction
{
if ([dropdownView isOpen])
{
[dropdownView hide];
}
else
{
//[tbViewType reloadData];
[dropdownView showInView:self.view withFrame:CGRectMake(0, 0, mainWidth, self.view.bounds.size.height)];
}
}
4:AllProTypeView下拉内容的视图代码如下(是一个列表):
.h文件内容
#import <UIKit/UIKit.h>
@protocol AllProTypeViewDelegate
- (void)selectedTypeCode:(int)code;
@end
@interface AllProTypeView : UIView
@property(nonatomic,weak)id<AllProTypeViewDelegate> delegate;
@end
.m文件内容
@interface AllProTypeView ()<UITableViewDataSource,UITableViewDelegate>
{
UITableView *tbView;
NSArray *arrOfType;
NSArray *arrOfTypeImage;
NSInteger indexType;
__weak id<AllProTypeViewDelegate> delegate;
}
@end
@implementation AllProTypeView
@synthesize delegate;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if(self)
{
self.backgroundColor = [UIColor redColor];
tbView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, mainWidth, frame.size.height) style:UITableViewStyleGrouped];
tbView.delegate = self;
tbView.dataSource = self;
tbView.backgroundColor = [UIColor whiteColor];
tbView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tbView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self addSubview:tbView];
if(![OyTool ShardInstance].bIsForReview)
{
arrOfType = @[@"全部分类",@"手机数码",@"电脑办公",@"家用电器",@"化妆个护",@"钟表首饰",@"其他商品"];
arrOfTypeImage = @[@"sort0",@"sort100",@"sort106",@"sort104",@"sort2",@"sort222",@"sort312"];
}
else
{
arrOfType = @[@"家用电器",@"化妆个护",@"钟表首饰",@"其他商品"];
arrOfTypeImage = @[@"sort104",@"sort2",@"sort222",@"sort312"];
}
}
return self;
}
#pragma mark - tableview
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return arrOfType.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 44;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1;
}
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = nil;//(UITableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil)
{
cell = [[UITableViewCell alloc] init];
}
cell.textLabel.text = [NSString stringWithFormat:@" %@", [arrOfType objectAtIndex:indexPath.row]];
NSString* name = [arrOfTypeImage objectAtIndex:indexPath.row];
if(indexPath.row == indexType)
{
name = [NSString stringWithFormat:@"%@_checked",name];
cell.textLabel.textColor = mainColor;
UIImageView* imgOK = [[UIImageView alloc] initWithFrame:CGRectMake(mainWidth - 32, 14, 20, 16)];
imgOK.image = [UIImage imageNamed:@"screening_select"];
[cell addSubview:imgOK];
}
else
{
name = [NSString stringWithFormat:@"%@_normal",name];
}
UIImageView* img = [[UIImageView alloc] initWithFrame:CGRectMake(16, 10, 24, 24)];
img.image = [UIImage imageNamed:name];
[cell addSubview:img];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
indexType = indexPath.row;
[tbView reloadData];
if(delegate)
{
NSString* code = [[arrOfTypeImage objectAtIndex:indexPath.row] stringByReplacingOccurrencesOfString:@"sort" withString:@""];
[delegate selectedTypeCode:[code intValue]];
}
}
@end
注意:列表有绑定是否是被选择,它显示的效果是不一样的,在触发行时对标识符进行重新赋值,把通过delegate把它传回主视图控件器里;
5:主控制器里响应上面delegate的内容为:
- (void)selectedTypeCode:(int)code
{
iCodeType = code;
[dropdownView hide];
NSString* key = [NSString stringWithFormat:@"%d",code];
NSString* name = [dicTypeName objectForKey:key];
[self actionCustomNavBtn:btnRigth nrlImage:@"" htlImage:@"0" title:name];
//重新绑定列表显示内容
__weak typeof (self) wSelf = self;
curPage = 1;
[self getData:^{
__strong typeof (wSelf) sSelf = wSelf;
sSelf->listNew = nil;
}];
}
iOS开发——UI篇&下拉弹出列表选择项效果的更多相关文章
- iOS开发UI篇—Modal简单介绍
iOS开发UI篇—Modal简单介绍 一.简单介绍 除了push之外,还有另外一种控制器的切换方式,那就是Modal 任何控制器都能通过Modal的形式展⽰出来 Modal的默认效果:新控制器从屏幕的 ...
- iOS开发UI篇—在UITableview的应用中使用动态单元格来完成app应用程序管理界面的搭建
iOS开发UI篇—在UITableview的应用中使用动态单元格来完成app应用程序管理界面的搭建 一.实现效果 说明:该示例在storyboard中使用动态单元格来完成. 二.实现 1.项目文件结构 ...
- iOS开发UI篇—Date Picker和UITool Bar控件简单介绍
iOS开发UI篇—Date Picker和UITool Bar控件简单介绍 一.Date Picker控件 1.简单介绍: Date Picker显示时间的控件 有默认宽高,不用设置数据源和代理 如何 ...
- iOS开发UI篇—CAlayer(创建图层)
iOS开发UI篇—CAlayer(创建图层) 一.添加一个图层 添加图层的步骤: 1.创建layer 2.设置layer的属性(设置了颜色,bounds才能显示出来) 3.将layer添加到界面上(控 ...
- iOS开发UI篇—UITableviewcell的性能优化和缓存机制
iOS开发UI篇—UITableviewcell的性能问题 一.UITableviewcell的一些介绍 UITableView的每一行都是一个UITableViewCell,通过dataSource ...
- iOS开发UI篇—实现UItableview控件数据刷新
iOS开发UI篇—实现UItableview控件数据刷新 一.项目文件结构和plist文件 二.实现效果 1.说明:这是一个英雄展示界面,点击选中行,可以修改改行英雄的名称(完成数据刷新的操作). 运 ...
- iOS开发UI篇—UIWindow简单介绍
iOS开发UI篇—UIWindow简单介绍 一.简单介绍 UIWindow是一种特殊的UIView,通常在一个app中只会有一个UIWindow iOS程序启动完毕后,创建的第一个视图控件就是UIWi ...
- iOS开发UI篇—无限轮播(功能完善)
iOS开发UI篇—无限轮播(功能完善) 一.自动滚动 添加并设置一个定时器,每个2.0秒,就跳转到下一条. 获取当前正在展示的位置. [self addNSTimer]; } -(void)addNS ...
- iOS开发UI篇—popoverController使用注意
iOS开发UI篇—popoverController使用注意 一.设置尺寸 提示:不建议,像下面这样吧popover的宽度和高度写死. //1.新建一个内容控制器 YYMenuViewControll ...
随机推荐
- Storm入门教程 第二章 构建Topology[转]
2.1 Storm基本概念 在运行一个Storm任务之前,需要了解一些概念: Topologies Streams Spouts Bolts Stream groupings Reliability ...
- [python]倒计时实现
for num in range(5,0,-1): time.sleep(1) sys.stdout.flush() sys.stdout.write('\rPlease Wa ...
- Bug疑难杂症 - java.lang.NoSuchFieldError: udhLen
通过友盟后台记录到一个诡异的错误: HUAWEI C8825D 4.0.4 百度.谷歌都未能找到一丝结果更别提解决方案. java.lang.NoSuchFieldError: udhLen at a ...
- 从windows转向mac
键盘问题: 按键对应表 Windows Mac ctrl command alt option 由此可推断,windows下的ctrl+c/v 变成了mac下的 command+c/v 功能对应表 删 ...
- An Oblivious Watermarking for 3-D Polygonal Meshes Using Distribution of Vertex Norms
An Oblivious Watermarking for 3-D Polygonal Meshes Using Distribution of Vertex Norms 转眼就11月底了,突然开始有 ...
- cocos2d-x 添加背景音乐和音效-SimpleAudioEngine
首先,要想使用音效,需要启用音效引擎库CocosDenshion中的SimpleAudioEngine类, #include "SimpleAudioEngine.h" Cocos ...
- 解决PHP5.3.x下ffmpeg安装配置问题
本人的环境: OS : windows 7 64位 WAMP:2.1a PHP:5.3.3(之前是5.3.13) 项目需要用ffmpeg-php实现上传视频转码截图等功能,但是找了很多资料都没有把ff ...
- ACM2050
问题描述: 平面上有n条折线,问这些折线最多能将平面分割成多少块? 样例输入 1 2 样例输出 2 7 答案是: 2n ( 2n + 1 ) / 2 + 1 - 2n = 2 n^2 – n + ...
- Windows Azure Platform (一) 云计算的出现
<Windows Azure Platform 系列文章目录> 最近的一年一直致力于微软云计算技术的推广和研究,对于微软的云计算平台Windows Azure Platform有一定的了解 ...
- 使用bootstrap的html文件转换成jsp…
问题:使用bootstrap的html文件转换成jsp时表单高度变窄 解决方法: 将jsp中html文档类型修改为<!DOCTYPE html> 问题即可解决. 也就是bootstrap只 ...

