squimer / DatePickerDialog-iOS-Swift

Date picker dialog for iOS
MIT License
584 stars 178 forks source link
date hacktoberfest ios swift

DatePickerDialog 4.0 - iOS - Swift

DatePickerDialog is an iOS drop-in classe that displays an UIDatePicker within an UIAlertView.

Requirements

DatePickerDialog works on iOS 7, 8 and 9, 10, 11, 12, 13 and 14. It depends on the following Apple frameworks, which should already be included with most Xcode templates:

Swift Versions

Installation

CocoaPods

You can use CocoaPods to install DatePickerDialog by adding it to your Podfile:

platform :ios, '8.0'
use_frameworks!
pod 'DatePickerDialog'

To get the full benefits import DatePickerDialog wherever you import UIKit

import UIKit
import DatePickerDialog

Carthage

Create a Cartfile that lists the framework and run carthage bootstrap. Follow the instructions to add $(SRCROOT)/Carthage/Build/iOS/DatePickerDialogFramework.framework to an iOS project.

github "squimer/DatePickerDialog-iOS-Swift"

Manually

  1. Download and drop DatePickerDialog.swift in your project.
  2. Congratulations!

Example

func datePickerTapped() {
    DatePickerDialog().show(title: "DatePicker", doneButtonTitle: "Done", cancelButtonTitle: "Cancel", datePickerMode: .date) { date in
        if let dt = date {
            let formatter = DateFormatter()
            formatter.dateFormat = "MM/dd/yyyy"
            self.textField.text = formatter.string(from: dt)
        }
    }
}

Dialog parameters

Example without 'Cancel' button:

DatePickerDialog(showCancelButton: false).show(title: "DatePicker", doneButtonTitle: "Done", datePickerMode: .date)

Example with custom locale:

DatePickerDialog(locale: Locale(identifier: "es_PY")).show(title: "DatePicker", doneButtonTitle: "Done", datePickerMode: .date)

Show parameters

Special thanks to

License

This code is distributed under the terms and conditions of the MIT license.