iOS开发 选择日期的view 一(UIDatePicker的封装)

2024-03-05 04:18

本文主要是介绍iOS开发 选择日期的view 一(UIDatePicker的封装),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

之前写了个基于类簇的自定义选择日期的view的封装,现在看看,感觉代码挺操蛋的,还是抽出来,只显示UIDatePicker的封装吧

//
//  XGChoseDateView.h
//  XGDevelopDemo
//
//  Created by 小广 on 15/8/18.
//  Copyright © 2015年 小广. All rights reserved.
//  选择日期的view#import <UIKit/UIKit.h>typedef NS_ENUM(NSInteger, DateType) {DateTypeNormal,       // 默认时间选择(月日时分)DateTypeModeDate      // 时间选择(只有年月日)
};typedef void (^ConfirmDateBlock)(NSDate  *date);@interface XGChoseDateView : UIView- (instancetype)initWithFrame:(CGRect)framedatePickerMode:(UIDatePickerMode)datePickerModelastDate:(NSDate *)lastDate;/***  View显示*/
- (void)showView;/***  确认所选时间**  @param block 传出Date*/
- (void)confirmDate:(ConfirmDateBlock)block;@end

.m里面的 代码 有点多,也懒得优化,都是用的纯代码

//
//  XGChoseDateView.m
//  XGDevelopDemo
//
//  Created by 小广 on 15/8/18.
//  Copyright © 2015年 小广. All rights reserved.
//  选择日期的view#import "XGChoseDateView.h"#define XGButtonWidth         60.0
#define TopBarHeight          44.0
#define PickerHeight          216.0
#define XGScreenBounds [UIScreen mainScreen].bounds
#define XGScreenWidth XGScreenBounds.size.width
#define XGScreenHeight XGScreenBounds.size.height
#define XGViewHeight CGRectGetHeight(XGScreenBounds) - 44 - 20 // 去掉导航条的高度@interface XGChoseDateView ()@property (nonatomic, strong) UIDatePicker *datePicker;
@property (nonatomic, strong) UIView       *bgView;        // 按钮背景View
@property (nonatomic, strong) UIButton     *cancelButton;  // 取消按钮
@property (nonatomic, strong) UIButton     *confirmButton; // 确定按钮
@property (nonatomic, strong) NSDate       *currentDate;   // 当前显示时间
@property (nonatomic, strong) NSDate       *lastDate;      // 上次选择时间
@property (nonatomic, assign) UIDatePickerMode datePickerMode; // datePicker显示形式
@property (nonatomic, copy) ConfirmDateBlock block;@end@implementation XGChoseDateView#pragma mark - 对外方法
- (instancetype)initWithFrame:(CGRect)framedatePickerMode:(UIDatePickerMode)datePickerModelastDate:(NSDate *)lastDate {self = [super initWithFrame:frame];if (self) {_datePickerMode = datePickerMode;_lastDate = lastDate;[self initSubViews];}return self;
}// 显示view(此方法是加载在window上 ,遮住导航条)
- (void)showView {UIWindow * window = [UIApplication sharedApplication].windows[0];[window addSubview:self];
}// 传值到外面
- (void)confirmDate:(ConfirmDateBlock)block {self.block = block;
}#pragma mark - 自定义方法
- (void)initSubViews {self.backgroundColor = [UIColor clearColor];self.alpha = 0;[self addCoverView];[self addBGView];self.datePicker.datePickerMode = self.datePickerMode;self.datePicker.date = self.lastDate ? self.lastDate : [NSDate date];self.currentDate = self.datePicker.date;
}// 添加蒙板
- (void)addCoverView {UIView *coverView = [[UIView alloc] initWithFrame:self.frame];coverView.alpha = 0.3;coverView.backgroundColor = [UIColor blackColor];[self addSubview:coverView];UITapGestureRecognizer  *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(coverViewDidTouch:)];tapGesture.numberOfTapsRequired = 1;[coverView addGestureRecognizer:tapGesture];
}// 大view添加子view(为了做动画)
- (void)addBGView {[self addSubview:self.bgView];[self addButtons];[self.bgView addSubview:self.datePicker];[self.datePicker addTarget:self action:@selector(datePickerValueChange:) forControlEvents:UIControlEventValueChanged];[UIView animateWithDuration:0.25 animations:^{self.alpha = 1.0;CGFloat posY = XGScreenHeight - (PickerHeight + TopBarHeight);self.bgView.frame = CGRectMake(0.0, posY, XGScreenWidth, (PickerHeight + TopBarHeight));} completion:^(BOOL finished) {//}];
}// 添加按钮
- (void)addButtons {CGFloat posY = 0.0;UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, posY, XGScreenWidth, TopBarHeight)];view.backgroundColor = UIColorFrom16RGB(0x334455);[self.bgView addSubview:view];// 取消按钮self.cancelButton = [UIButton buttonWithType:UIButtonTypeCustom];self.cancelButton.frame = CGRectMake(0.0, posY, XGButtonWidth, TopBarHeight);self.cancelButton.tag = 0;[self.cancelButton setBackgroundColor:[UIColor clearColor]];[self.cancelButton setTitle:@"取消" forState:UIControlStateNormal];[self.cancelButton addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];[self.bgView addSubview:self.cancelButton];// 确定按钮CGFloat posX = XGScreenWidth - XGButtonWidth;self.confirmButton = [UIButton buttonWithType:UIButtonTypeCustom];self.confirmButton.frame = CGRectMake(posX, posY, XGButtonWidth, TopBarHeight);self.confirmButton.tag = 1;[self.confirmButton setBackgroundColor:[UIColor clearColor]];[self.confirmButton setTitle:@"确定" forState:UIControlStateNormal];[self.confirmButton addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];[self.bgView addSubview:self.confirmButton];}// 按钮点击事件
- (void)buttonClick:(UIButton *)sender {if (sender.tag == 1) {if (!self.currentDate) {self.currentDate = [NSDate date];}if (self.block) {self.block(self.currentDate);}}[self dismissContactView];
}// 蒙板手势事件
- (void)coverViewDidTouch:(UITapGestureRecognizer *)sender {if (!self.currentDate) {self.currentDate = [NSDate date];}if (self.block) {self.block(self.currentDate);}[self dismissContactView];
}// 移除view
- (void)dismissContactView {kWeakSelf[UIView animateWithDuration:0.25 animations:^{weakSelf.bgView.frame = CGRectMake(0.0, XGScreenHeight, XGScreenWidth, 0.0);weakSelf.alpha = 0;} completion:^(BOOL finished) {[weakSelf removeFromSuperview];}];
}#pragma mark - 懒加载
// PickerView和按钮的父视图view(为了做动画)
- (UIView *)bgView {if (!_bgView) {_bgView = [[UIView alloc] initWithFrame:CGRectMake(0.0, XGScreenHeight, XGScreenWidth, (PickerHeight + TopBarHeight))];_bgView.backgroundColor = [UIColor clearColor];_bgView.clipsToBounds = YES;}return _bgView;
}- (UIDatePicker *)datePicker {if (!_datePicker) {_datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0.0, TopBarHeight, XGScreenWidth, 216.0)];_datePicker.backgroundColor = [UIColor whiteColor];}return _datePicker;
}#pragma mark - 代理方法
// UIDatePicker绑定方法
- (void)datePickerValueChange:(UIDatePicker *)sender {self.currentDate = sender.date;
}@end

用法:

XGChoseDateView *choseView = [[XGChoseDateView alloc] initWithFrame:XGScreenBoundsdatePickerMode:UIDatePickerModeDatelastDate:self.choseDate];[choseView showView];__weak __typeof(self)weakSelf = self;[choseView confirmDate:^(NSDate *date) {weakSelf.choseDate = date;NSLog(@"当前选择的时间是==%@==",date);}];

其中的choseDate 也就是记录上次所选择的时间,就酱,还有很多待优化,以后有时间了再说...

效果:


这篇关于iOS开发 选择日期的view 一(UIDatePicker的封装)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/775314

相关文章

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

利用Python开发Markdown表格结构转换为Excel工具

《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

Python使用date模块进行日期处理的终极指南

《Python使用date模块进行日期处理的终极指南》在处理与时间相关的数据时,Python的date模块是开发者最趁手的工具之一,本文将用通俗的语言,结合真实案例,带您掌握date模块的六大核心功能... 目录引言一、date模块的核心功能1.1 日期表示1.2 日期计算1.3 日期比较二、六大常用方法详

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

基于Python开发批量提取Excel图片的小工具

《基于Python开发批量提取Excel图片的小工具》这篇文章主要为大家详细介绍了如何使用Python中的openpyxl库开发一个小工具,可以实现批量提取Excel图片,有需要的小伙伴可以参考一下... 目前有一个需求,就是批量读取当前目录下所有文件夹里的Excel文件,去获取出Excel文件中的图片,并

Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)

《Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)》:本文主要介绍Java导入、导出excel的相关资料,讲解了使用Java和ApachePOI库将数据导出为Excel文件,包括... 目录前言一、引入Apache POI依赖二、用法&步骤2.1 创建Excel的元素2.3 样式和字体2.

JAVA封装多线程实现的方式及原理

《JAVA封装多线程实现的方式及原理》:本文主要介绍Java中封装多线程的原理和常见方式,通过封装可以简化多线程的使用,提高安全性,并增强代码的可维护性和可扩展性,需要的朋友可以参考下... 目录前言一、封装的目标二、常见的封装方式及原理总结前言在 Java 中,封装多线程的原理主要围绕着将多线程相关的操

基于Python开发PDF转PNG的可视化工具

《基于Python开发PDF转PNG的可视化工具》在数字文档处理领域,PDF到图像格式的转换是常见需求,本文介绍如何利用Python的PyMuPDF库和Tkinter框架开发一个带图形界面的PDF转P... 目录一、引言二、功能特性三、技术架构1. 技术栈组成2. 系统架构javascript设计3.效果图