热门标签 | HotTags
当前位置:  开发笔记 > IOS > 正文

iOS下拉选择菜单简单封装

这篇文章主要为大家详细介绍了iOS下拉选择菜单封装代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了简单封装的iOS下拉选择菜单代码,供大家参考,具体内容如下

// 
// OrderListDownMenu.h 
 
#import  
 
@protocol OrderListDownMenuDelegate  
 
- (void)OrderListDownMenu:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; 
 
@end 
 
typedef void(^Dismiss)(void); 
 
@interface OrderListDownMenu : UIView 
 
@property (nonatomic, strong) UITableView *tableView; 
@property (nonatomic, assign) id delegate; 
@property (nonatomic, strong) NSArray *arrData; 
@property (nonatomic, strong) NSArray *arrImgName; 
@property (nonatomic, copy) Dismiss dismiss; 
 
- (instancetype)initWithDataArr:(NSArray *)dataArr origin:(CGPoint)origin width:(CGFloat)width rowHeight:(CGFloat)rowHeight; 
 
- (void)dismissWithCompletion:(void (^)(OrderListDownMenu *object))completion; 
 
@end 


#import "OrderListDownMenu.h" 
 
#define TopToView 63.0f 
#define rightToView kScreenWidth - 15.0f 
#define LeftToView kScreenWidth - 145.0 - 10.0f 
#define CellLineEdgeInsets UIEdgeInsetsMake(0, -80, 0, 0) 
#define kScreenWidth    [UIScreen mainScreen].bounds.size.width 
#define kScreenHeight    [UIScreen mainScreen].bounds.size.height 
 
@interface OrderListDownMenu() 
 
@property (nonatomic, assign) CGPoint origin; 
@property (nonatomic, assign) CGFloat rowHeight; 
 
@end 
 
@implementation OrderListDownMenu 
 
- (instancetype)initWithDataArr:(NSArray *)dataArr origin:(CGPoint)origin width:(CGFloat)width rowHeight:(CGFloat)rowHeight { 
   
  self = [super initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight)]; 
  if (self) { 
    if (rowHeight <= 0) { 
      rowHeight = 50; 
    } 
     
    // 设置背景颜色 
    self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.2]; 
    self.origin = origin; 
    self.rowHeight = rowHeight; 
    self.arrData = [dataArr copy]; 
    self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(origin.x + LeftToView, origin.y + TopToView, width, rowHeight * dataArr.count) style:UITableViewStylePlain]; 
    _tableView.dataSource = self; 
    _tableView.delegate = self; 
    [self addSubview:_tableView]; 
     
    _tableView.backgroundColor = [UIColor whiteColor]; 
    _tableView.layer.cornerRadius = 2; 
    _tableView.bounces = NO; 
    _tableView.layer.cornerRadius = 8; 
    _tableView.separatorColor = [UIColor colorWithWhite:0.3 alpha:1]; 
    
    _tableView.separatorStyle = UITableViewCellSelectionStyleNone; 
    [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"]; 
     
    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) { 
      [self.tableView setSeparatorInset:CellLineEdgeInsets]; 
    } 
     
    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) { 
      [self.tableView setLayoutMargins:CellLineEdgeInsets]; 
    } 
  } 
  return self; 
} 
 
- (void)layoutSubviews { 
  [super layoutSubviews]; 
} 
 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 
  return self.arrData.count; 
} 
 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { 
  return self.rowHeight; 
} 
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
   
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"]; 
  cell.textLabel.textColor = THEME_COLOR_GRAY_1; 
  cell.textLabel.fOnt= [UIFont systemFontOfSize:15]; 
  cell.textLabel.text = self.arrData[indexPath.row]; 
   
  if (self.arrImgName.count > indexPath.row) { 
    cell.imageView.image = [UIImage imageNamed:self.arrImgName[indexPath.row]]; 
    cell.imageView.cOntentMode= UIViewContentModeScaleAspectFit; 
  } 
   
  UILabel *label = [[UILabel alloc] init]; 
  label.frame = CGRectMake(0, 49, _tableView.frame.size.width, 0.5); 
  label.backgroundColor = THEME_SEPARATOR_COLOR; 
  [cell.contentView addSubview:label]; 
   
  return cell; 
} 
 
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 
   
  if([self.delegate respondsToSelector:@selector(OrderListDownMenu:didSelectRowAtIndexPath:)]){ 
    [self.delegate OrderListDownMenu:tableView didSelectRowAtIndexPath:indexPath]; 
  } 
   
  [tableView deselectRowAtIndexPath:indexPath animated:YES]; 
  [self dismissWithCompletion:nil]; 
} 
 
- (void)dismissWithCompletion:(void (^)(OrderListDownMenu *object))completion { 
   
  __weak __typeof(self) weakSelf = self; 
  [UIView animateWithDuration:0.2 animations:^{ 
    weakSelf.alpha = 0; 
    weakSelf.tableView.frame = CGRectMake(weakSelf.origin.x + LeftToView + 145, weakSelf.origin.y + TopToView, 0, 0); 
  } completion:^(BOOL finished) { 
    [weakSelf removeFromSuperview]; 
    if (completion) { 
      completion(weakSelf); 
    } 
    if (weakSelf.dismiss) { 
      weakSelf.dismiss(); 
    } 
  }]; 
} 
 
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 
   
  UITouch *touch = [touches anyObject]; 
  if (![touch.view isEqual:self.tableView]) { 
    [self dismissWithCompletion:nil]; 
  } 
} 
 
- (void)drawRect:(CGRect)rect { 
   
  //[colors[serie] setFill]; 
   
  //拿到当前视图准备好的画板 
   
  CGContextRef cOntext= UIGraphicsGetCurrentContext(); 
   
  //利用path进行绘制三角形 
   
  CGContextBeginPath(context);//标记 
   
  CGContextMoveToPoint(context, 
             rightToView - 13, 53);//设置起点 
   
  CGContextAddLineToPoint(context, 
              rightToView - 21, TopToView); 
   
  CGContextAddLineToPoint(context, 
              rightToView - 4, TopToView); 
   
  CGContextClosePath(context);//路径结束标志,不写默认封闭 
   
 
  [self.tableView.backgroundColor setFill]; //设置填充色 
   
  [self.tableView.backgroundColor setStroke]; //设置边框颜色 
   
  CGContextDrawPath(context, 
           kCGPathFillStroke);//绘制路径path 
} 
 
@end 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。


推荐阅读
  • 本文介绍如何通过Windows批处理脚本定期检查并重启Java应用程序,确保其持续稳定运行。脚本每30分钟检查一次,并在需要时重启Java程序。同时,它会将任务结果发送到Redis。 ... [详细]
  • 如何优化2060显卡设置以提升《Apex英雄》游戏体验
    《Apex英雄》作为一款热门的战术竞技游戏,吸引了大量玩家。本文将探讨如何通过优化GeForce RTX 2060显卡设置,确保在《Apex英雄》中获得最佳性能和流畅的游戏体验。 ... [详细]
  • 本文介绍了在Windows环境下使用pydoc工具的方法,并详细解释了如何通过命令行和浏览器查看Python内置函数的文档。此外,还提供了关于raw_input和open函数的具体用法和功能说明。 ... [详细]
  • 题目Link题目学习link1题目学习link2题目学习link3%%%受益匪浅!-----&# ... [详细]
  • 本文探讨了 C++ 中普通数组和标准库类型 vector 的初始化方法。普通数组具有固定长度,而 vector 是一种可扩展的容器,允许动态调整大小。文章详细介绍了不同初始化方式及其应用场景,并提供了代码示例以加深理解。 ... [详细]
  • 网络运维工程师负责确保企业IT基础设施的稳定运行,保障业务连续性和数据安全。他们需要具备多种技能,包括搭建和维护网络环境、监控系统性能、处理突发事件等。本文将探讨网络运维工程师的职业前景及其平均薪酬水平。 ... [详细]
  • 高效解决应用崩溃问题!友盟新版错误分析工具全面升级
    友盟推出的最新版错误分析工具,专为移动开发者设计,提供强大的Crash收集与分析功能。该工具能够实时监控App运行状态,快速发现并修复错误,显著提升应用的稳定性和用户体验。 ... [详细]
  • 本题涉及一棵由N个节点组成的树(共有N-1条边),初始时所有节点均为白色。题目要求处理两种操作:一是改变某个节点的颜色(从白变黑或从黑变白);二是查询从根节点到指定节点路径上的第一个黑色节点,若无则输出-1。 ... [详细]
  • 并发编程:深入理解设计原理与优化
    本文探讨了并发编程中的关键设计原则,特别是Java内存模型(JMM)的happens-before规则及其对多线程编程的影响。文章详细介绍了DCL双重检查锁定模式的问题及解决方案,并总结了不同处理器和内存模型之间的关系,旨在为程序员提供更深入的理解和最佳实践。 ... [详细]
  • 技术人员转型项目管理:常见思维误区与挑战解析
    本文探讨了技术人员在向项目管理角色转变过程中常见的思维误区和困惑,分析了如何有效管理项目中的事务和人员,提供了实用的解决方案。 ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • 探索1000以内的完美数:因数和等于自身
    本文探讨了如何在1000以内找到所有完美数,即一个数的因数(不包括自身)之和等于该数本身。例如,6是一个完美数,因为1 + 2 + 3 = 6。通过编程实现这一过程,可以更好地理解完美数的特性。 ... [详细]
  • Codeforces Round #566 (Div. 2) A~F个人题解
    Dashboard-CodeforcesRound#566(Div.2)-CodeforcesA.FillingShapes题意:给你一个的表格,你 ... [详细]
  • 本文详细介绍了Git分布式版本控制系统中远程仓库的概念和操作方法。通过具体案例,帮助读者更好地理解和掌握如何高效管理代码库。 ... [详细]
  • 本题探讨如何通过最大流算法解决农场排水系统的设计问题。题目要求计算从水源点到汇合点的最大水流速率,使用经典的EK(Edmonds-Karp)和Dinic算法进行求解。 ... [详细]
author-avatar
与XUE一起中意JJ的小杨杨_746
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有