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 ...
随机推荐
- CXF之一 基础理论介绍
WebService介绍 WebService让一个程序可以透明地调用互联网程序,不用管具体的实现细节.只要WebService公开了服务接口,远程客户端就可以调用服务.WebService是基于 ...
- C#发送Email邮件(实例:QQ邮箱和Gmail邮箱)
下面用到的邮件账号和密码都不是真实的,需要测试就换成自己的邮件账号. 需要引用: using System.Net.Mail; using System.Text; using System.Net; ...
- 转载:C语言的谜题
转载:http://coolshell.cn/articles/945.html 这几天,本站推出了几篇关于C语言的很多文章如下所示: 语言的歧义 [酷壳链接] [CSDN链接] 谁说C语言很简单? ...
- 典型的 SQL 注入过程(转)
无意间发现某站点存在 SQL 注入漏洞,于是利用这个漏洞提权并获取服务器控制权.这个案例很典型,像是教科书式的典型入侵步骤,下面就以这个案例展示从 SQL 注入到获取目标服务器控制权限的全过程. 发现 ...
- 常用SQL语句汇总整理
1.SQL 插入语句得到自动生成的递增ID 值 insert into Table1(Name,des,num) values (''ltp'',''thisisbest'',10); select ...
- private
成员变量私有化的好处在于可以强制加强面向对象和封装的概念,一个面向对象的系统更加关注行为,而不是数据,所以应该通过发送消息来获得数据,也应该实习细节的封装
- PHP:PHP5.4连接SQLSERVER
在PHP5.4的环境下要连接SQLSERVER(2005/2008)数据库,需要以下步骤: 1.下载PHP5.4连接SQLSERVER的驱动(两个动态连接库)http://www.microsoft. ...
- Sql建表语句
create table dbo.[Finance_CityInfo] ([CityId] int identity(1,1) not null , [City] nvarchar(20) not n ...
- 第四次作业——WORDSEARCH小游戏
“谁想出来的这么缺德的题目啊!!!!”一个声音在我心中回荡 这个题目很早就在课堂上公布了,我和我的小伙伴都惊呆了! 这是个毛?根本无从下手的感觉 总是觉得这个小游戏不是程序能给出答案的,因为我的第一印 ...
- log4j2使用总结
一.Log4j有三个主要的组件:Loggers,Appenders和Layouts,这里可简单理解为日志级别,日志要输出的地方和日志格式 1. Logger Logger的日志级别有6级,分别是TRA ...

