Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CooperRS/RMDateSelectionViewController
This is an iOS control for selecting a date using UIDatePicker in an UIAlertController like manner
https://github.com/CooperRS/RMDateSelectionViewController
Last synced: 6 days ago
JSON representation
This is an iOS control for selecting a date using UIDatePicker in an UIAlertController like manner
- Host: GitHub
- URL: https://github.com/CooperRS/RMDateSelectionViewController
- Owner: CooperRS
- License: mit
- Created: 2013-10-26T16:11:37.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-10-30T10:22:44.000Z (about 2 years ago)
- Last Synced: 2024-11-30T03:03:47.999Z (12 days ago)
- Language: Objective-C
- Homepage:
- Size: 1.93 MB
- Stars: 1,147
- Watchers: 39
- Forks: 167
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - RMDateSelectionViewController - Select a date using UIDatePicker in a UIAlertController like fashion. (UI / Alert & Action Sheet)
- awesome-ios-star - RMDateSelectionViewController - Select a date using UIDatePicker in a UIAlertController like fashion. (UI / Alert & Action Sheet)
README
RMDateSelectionViewController [![Build Status](https://travis-ci.org/CooperRS/RMDateSelectionViewController.svg?branch=master)](https://travis-ci.org/CooperRS/RMDateSelectionViewController/) [![Pod Version](https://img.shields.io/cocoapods/v/RMDateSelectionViewController.svg)](https://cocoapods.org/pods/RMDateSelectionViewController) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
=============================This framework allows you to select a date by presenting an action sheet. In addition, it allows you to add actions arround the presented date picker which behave like a button and can be tapped by the user. The result looks very much like an `UIActionSheet` or `UIAlertController` with a `UIDatePicker` and some `UIActions` attached.
Besides being a fully-usable project, `RMDateSelectionViewController` also is an example for an use case of [RMActionController](https://github.com/CooperRS/RMActionController). You can use it to learn how to present a date picker other than `UIDatePicker`.
## Screenshots
### Portrait
| White | Black | Sheet White | Sheet Black |
|:-----:|:-----:|:---:|:---:|
|![Portrait](http://cooperrs.github.io/RMDateSelectionViewController/Images/Blur-Screen-Portrait.png) | ![Black](http://cooperrs.github.io/RMDateSelectionViewController/Images/Blur-Screen-Portrait-Black.png) | ![Sheet](http://cooperrs.github.io/RMDateSelectionViewController/Images/Blur-Screen-Portrait-Sheet.png) | ![Sheet-Black](http://cooperrs.github.io/RMDateSelectionViewController/Images/Blur-Screen-Portrait-Sheet-Black.png) |## Demo Project
If you want to run the demo project do not forget to initialize submodules.## Installation (CocoaPods)
```ruby
platform :ios, '8.0'
pod "RMDateSelectionViewController", "~> 2.3.1"
```## Usage
For a detailed description on how to use `RMDateSelectionViewController` take a look at the [Wiki Pages](https://github.com/CooperRS/RMDateSelectionViewController/wiki). The following four steps are a very short intro:
* Import `RMDateSelectionViewController`:
```objc
#import
```* Create select and cancel actions:
```objc
RMAction *selectAction = [RMAction actionWithTitle:@"Select" style:RMActionStyleDone andHandler:^(RMActionController *controller) {
NSLog(@"Successfully selected date: %@", controller.contentView.date);
}];RMAction *cancelAction = [RMAction actionWithTitle:@"Cancel" style:RMActionStyleCancel andHandler:^(RMActionController *controller) {
NSLog(@"Date selection was canceled");
}];
```* Create and instance of `RMDateSelectionViewController` and present it:
```objc
RMDateSelectionViewController *dateSelectionController = [RMDateSelectionViewController actionControllerWithStyle:RMActionControllerStyleWhite title:@"Test" message:@"This is a test message.\nPlease choose a date and press 'Select' or 'Cancel'." selectAction:selectAction andCancelAction:cancelAction];[self presentViewController:dateSelectionController animated:YES completion:nil];
```* The following code block shows you a complete method:
```objc
- (IBAction)openDateSelectionController:(id)sender {
RMAction *selectAction = [RMAction actionWithTitle:@"Select" style:RMActionStyleDone andHandler:^(RMActionController *controller) {
NSLog(@"Successfully selected date: %@", controller.contentView.date);
}];
RMAction *cancelAction = [RMAction actionWithTitle:@"Cancel" style:RMActionStyleCancel andHandler:^(RMActionController *controller) {
NSLog(@"Date selection was canceled");
}];
RMDateSelectionViewController *dateSelectionController = [RMDateSelectionViewController actionControllerWithStyle:RMActionControllerStyleWhite title:@"Test" message:@"This is a test message.\nPlease choose a date and press 'Select' or 'Cancel'." selectAction:selectAction andCancelAction:cancelAction];
[self presentViewController:dateSelectionController animated:YES completion:nil];
}
```## Migration
See [Migration](https://github.com/CooperRS/RMDateSelectionViewController/wiki/Migration) on how to migrate to the latest version of `RMDateSelectionViewController`.
## Documentation
There is an additional documentation available provided by the CocoaPods team. Take a look at [cocoadocs.org](http://cocoadocs.org/docsets/RMDateSelectionViewController/).## Requirements
| Compile Time | Runtime |
| :------------ | :------------ |
| Xcode 7 | iOS 8 |
| iOS 9 SDK | |
| ARC | |Note: ARC can be turned on and off on a per file basis.
Version 1.5.0 and above of `RMDateSelectionViewController` use custom transitions for presenting the date selection controller. Custom transitions are a new feature introduced by Apple in iOS 7. Unfortunately, custom transitions are totally broken in landscape mode on iOS 7. This issue has been fixed with iOS 8. So if your application supports landscape mode (even on iPad), version 1.5.0 and above of this control require iOS 8. Otherwise, iOS 7 should be fine. In particular, iOS 7 is fine for version 1.4.3 and below.
## Apps using this control
Using this control in your app or know anyone who does?Feel free to add the app to this list: [Apps using RMDateSelectionViewController](https://github.com/CooperRS/RMDateSelectionViewController/wiki/Apps-using-RMDateSelectionViewController)
## Further Info
If you want to show an `UIPickerView` instead of an `UIDatePicker`, you may take a look at my other control called [RMPickerViewController](https://github.com/CooperRS/RMPickerViewController).If you want to show any other control you may want to take a look at [RMActionController](https://github.com/CooperRS/RMActionController).
## Credits
Code contributions:
* AnthonyMDev
* Cancel delegate method should be optional
* Digeon Benjamin
* Delegate method when now button is pressed
* Cancel delegate method is called when background view is tapped
* Denis Andrasec
* Bugfixes
* Robin Franssen
* Block support
* Scott Chou
* Images for cancel and select button
* steveoleary
* BugfixesLocalizations:
* Vincent Xue (Chinese)
* Alex Studnička (Czech)
* Robin Franssen (Dutch)
* tobiasgr (Danish)
* Thomas Besnehard (French)
* Heberti Almeida (Portuguese)
* Anton Rusanov (Russian)
* Pedro Ventura (Spanish)
* Aron Manucheri (Swedish)
* Vinh Nguyen (Vietnamese)I want to thank everyone who has contributed code and/or time to this project!
## License (MIT License)
```
Copyright (c) 2013-2016 Roland MoersPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```