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实例题之pygame开发打飞机游戏实例代码

《Python实例题之pygame开发打飞机游戏实例代码》对于python的学习者,能够写出一个飞机大战的程序代码,是不是感觉到非常的开心,:本文主要介绍Python实例题之pygame开发打飞机... 目录题目pygame-aircraft-game使用 Pygame 开发的打飞机游戏脚本代码解释初始化部

使用Python开发一个现代化屏幕取色器

《使用Python开发一个现代化屏幕取色器》在UI设计、网页开发等场景中,颜色拾取是高频需求,:本文主要介绍如何使用Python开发一个现代化屏幕取色器,有需要的小伙伴可以参考一下... 目录一、项目概述二、核心功能解析2.1 实时颜色追踪2.2 智能颜色显示三、效果展示四、实现步骤详解4.1 环境配置4.

Python使用smtplib库开发一个邮件自动发送工具

《Python使用smtplib库开发一个邮件自动发送工具》在现代软件开发中,自动化邮件发送是一个非常实用的功能,无论是系统通知、营销邮件、还是日常工作报告,Python的smtplib库都能帮助我们... 目录代码实现与知识点解析1. 导入必要的库2. 配置邮件服务器参数3. 创建邮件发送类4. 实现邮件

Java日期类详解(最新推荐)

《Java日期类详解(最新推荐)》早期版本主要使用java.util.Date、java.util.Calendar等类,Java8及以后引入了新的日期和时间API(JSR310),包含在ja... 目录旧的日期时间API新的日期时间 API(Java 8+)获取时间戳时间计算与其他日期时间类型的转换Dur

基于Python开发一个有趣的工作时长计算器

《基于Python开发一个有趣的工作时长计算器》随着远程办公和弹性工作制的兴起,个人及团队对于工作时长的准确统计需求日益增长,本文将使用Python和PyQt5打造一个工作时长计算器,感兴趣的小伙伴可... 目录概述功能介绍界面展示php软件使用步骤说明代码详解1.窗口初始化与布局2.工作时长计算核心逻辑3

python web 开发之Flask中间件与请求处理钩子的最佳实践

《pythonweb开发之Flask中间件与请求处理钩子的最佳实践》Flask作为轻量级Web框架,提供了灵活的请求处理机制,中间件和请求钩子允许开发者在请求处理的不同阶段插入自定义逻辑,实现诸如... 目录Flask中间件与请求处理钩子完全指南1. 引言2. 请求处理生命周期概述3. 请求钩子详解3.1

如何基于Python开发一个微信自动化工具

《如何基于Python开发一个微信自动化工具》在当今数字化办公场景中,自动化工具已成为提升工作效率的利器,本文将深入剖析一个基于Python的微信自动化工具开发全过程,有需要的小伙伴可以了解下... 目录概述功能全景1. 核心功能模块2. 特色功能效果展示1. 主界面概览2. 定时任务配置3. 操作日志演示

JavaScript实战:智能密码生成器开发指南

本文通过JavaScript实战开发智能密码生成器,详解如何运用crypto.getRandomValues实现加密级随机密码生成,包含多字符组合、安全强度可视化、易混淆字符排除等企业级功能。学习密码强度检测算法与信息熵计算原理,获取可直接嵌入项目的完整代码,提升Web应用的安全开发能力 目录

Python日期和时间完全指南与实战

《Python日期和时间完全指南与实战》在软件开发领域,‌日期时间处理‌是贯穿系统设计全生命周期的重要基础能力,本文将深入解析Python日期时间的‌七大核心模块‌,通过‌企业级代码案例‌揭示最佳实践... 目录一、背景与核心价值二、核心模块详解与实战2.1 datetime模块四剑客2.2 时区处理黄金法

Java进行日期解析与格式化的实现代码

《Java进行日期解析与格式化的实现代码》使用Java搭配ApacheCommonsLang3和Natty库,可以实现灵活高效的日期解析与格式化,本文将通过相关示例为大家讲讲具体的实践操作,需要的可以... 目录一、背景二、依赖介绍1. Apache Commons Lang32. Natty三、核心实现代