//
// ViewController.swift
// Swift-UIDataPicker的使用
//
// Created by 品德信息 on 2016/12/28.
// Copyright ? 2016年 品德信息. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let datePicker = UIDatePicker()
datePicker.center = CGPoint(x:160,y:200)
datePicker.tag = 1
self.view.addSubview(datePicker)
let rect = CGRect(x:20,y:360,width:200,height:44)
let button = UIButton(type:UIButtonType.roundedRect)
button.frame = rect
button.backgroundColor = UIColor.lightGray
button.setTitle("Get date", for: UIControlState())
button.addTarget(self, action: #selector(ViewController.getDate), for: UIControlEvents.touchUpInside)
self.view.addSubview(button)
}
func getDate() {
//通過標識值,獲得當店日期拾取器對象
let datePicker = self.view.viewWithTag(1) as!UIDatePicker
let date = datePicker.date
let dateFormater = DateFormatter()
dateFormater.dateFormat = "yyy-MM-dd HH:mm"
let dateAndTime = dateFormater.string(from: date)
let alert = UIAlertController(title:"Information",message:dateAndTime,preferredStyle:UIAlertControllerStyle.alert)
let action = UIAlertAction(title:"OK",style:UIAlertActionStyle.default, handler:nil)
alert.addAction(action)
self.present(alert,animated: true,completion: nil)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
swift-UIDataPicker的使用
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
推薦閱讀更多精彩內容
- 如何在Swift的代碼中使用OC的代碼, 在OC的代碼中使用Swift的代碼? 一、OC的代碼中使用Swift代碼...