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

相关文章

python处理带有时区的日期和时间数据

《python处理带有时区的日期和时间数据》这篇文章主要为大家详细介绍了如何在Python中使用pytz库处理时区信息,包括获取当前UTC时间,转换为特定时区等,有需要的小伙伴可以参考一下... 目录时区基本信息python datetime使用timezonepandas处理时区数据知识延展时区基本信息

Go语言开发实现查询IP信息的MCP服务器

《Go语言开发实现查询IP信息的MCP服务器》随着MCP的快速普及和广泛应用,MCP服务器也层出不穷,本文将详细介绍如何在Go语言中使用go-mcp库来开发一个查询IP信息的MCP... 目录前言mcp-ip-geo 服务器目录结构说明查询 IP 信息功能实现工具实现工具管理查询单个 IP 信息工具的实现服

Java实现优雅日期处理的方案详解

《Java实现优雅日期处理的方案详解》在我们的日常工作中,需要经常处理各种格式,各种类似的的日期或者时间,下面我们就来看看如何使用java处理这样的日期问题吧,感兴趣的小伙伴可以跟随小编一起学习一下... 目录前言一、日期的坑1.1 日期格式化陷阱1.2 时区转换二、优雅方案的进阶之路2.1 线程安全重构2

使用Python开发一个带EPUB转换功能的Markdown编辑器

《使用Python开发一个带EPUB转换功能的Markdown编辑器》Markdown因其简单易用和强大的格式支持,成为了写作者、开发者及内容创作者的首选格式,本文将通过Python开发一个Markd... 目录应用概览代码结构与核心组件1. 初始化与布局 (__init__)2. 工具栏 (setup_t

Spring Shell 命令行实现交互式Shell应用开发

《SpringShell命令行实现交互式Shell应用开发》本文主要介绍了SpringShell命令行实现交互式Shell应用开发,能够帮助开发者快速构建功能丰富的命令行应用程序,具有一定的参考价... 目录引言一、Spring Shell概述二、创建命令类三、命令参数处理四、命令分组与帮助系统五、自定义S

Mysql表如何按照日期字段的年月分区

《Mysql表如何按照日期字段的年月分区》:本文主要介绍Mysql表如何按照日期字段的年月分区的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、创键表时直接设置分区二、已有表分区1、分区的前置条件2、分区操作三、验证四、注意总结一、创键表时直接设置分区

鸿蒙中Axios数据请求的封装和配置方法

《鸿蒙中Axios数据请求的封装和配置方法》:本文主要介绍鸿蒙中Axios数据请求的封装和配置方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录1.配置权限 应用级权限和系统级权限2.配置网络请求的代码3.下载在Entry中 下载AxIOS4.封装Htt

Python通过模块化开发优化代码的技巧分享

《Python通过模块化开发优化代码的技巧分享》模块化开发就是把代码拆成一个个“零件”,该封装封装,该拆分拆分,下面小编就来和大家简单聊聊python如何用模块化开发进行代码优化吧... 目录什么是模块化开发如何拆分代码改进版:拆分成模块让模块更强大:使用 __init__.py你一定会遇到的问题模www.

Spring Security基于数据库的ABAC属性权限模型实战开发教程

《SpringSecurity基于数据库的ABAC属性权限模型实战开发教程》:本文主要介绍SpringSecurity基于数据库的ABAC属性权限模型实战开发教程,本文给大家介绍的非常详细,对大... 目录1. 前言2. 权限决策依据RBACABAC综合对比3. 数据库表结构说明4. 实战开始5. MyBA

使用Python开发一个简单的本地图片服务器

《使用Python开发一个简单的本地图片服务器》本文介绍了如何结合wxPython构建的图形用户界面GUI和Python内建的Web服务器功能,在本地网络中搭建一个私人的,即开即用的网页相册,文中的示... 目录项目目标核心技术栈代码深度解析完整代码工作流程主要功能与优势潜在改进与思考运行结果总结你是否曾经