KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
datePickView
★ 94
Open GitHub ↗
年月日时分时间选择器
Download README (.md)
Explore Similar Repositories
ngx-s3-upload
:
Angular 6: S3 uploads using Cognito authentication
purl.obolibrary.org
:
A system for managing OBO PURLs
zipkin-gcp
:
Reporters and collectors for use in Google Cloud Platform
bugsnag-elixir
:
An Elixir interface to the Bugsnag API
high-frequency-checks
:
A Stata template for running high frequency checks of incoming research data at Innovations for Poverty Action
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
datePickView
?
Download (.md)
# datePickView 年月日时分时间选择器 支持选择年月日时分的日期选择器,分的间隔是5分,   #### Installation 安装 手动导入:将THDatePickerView文件夹拽入项目中,导入头文件:#import "THDatePickerView.h" #### Example 例子 // 创建 ` THDatePickerView *dateView = [[THDatePickerView alloc] initWithFrame:self.view.bounds];` ` dateView.delegate = self;` ` dateView.title = @"请选择时间";` `[self.view addSubview:dateView];` // 显示 `- (IBAction)timerBrnClick:(id)sender {` `[self.dateView show];` `}` /** 保存按钮代理方法 @param timer 选择的数据 */ `- (void)datePickerViewSaveBtnClickDelegate:(NSString *)timer {` ` NSLog(@"保存点击");` ` self.timerLbl.text = timer;` `}` /** 取消按钮代理方法 */ `- (void)datePickerViewCancelBtnClickDelegate {` ` NSLog(@"取消点击");` `}` 使用简单