Обновление даты (времени) в ячейке после выбора DatePicker - PullRequest
0 голосов
/ 27 августа 2018

Я в настоящее время приложение, которое имеет функцию, которая позволяет пользователям добавлять расписание (время)

Вот прогресс, который я сделал до сих пор
1. Добавил textview и datepicker и сделал DatePicker включенным послекоснувшись textView
2. Время (время запуска проекта) отображается в каждой ячейке (как прикрепленное изображение)

Я хочу отобразить дату (например, 10:10 PM на коротком экране)) в ячейке после выбора времени в DatePicker, но не может обновить выбранное время.
Есть идеи, как это сделать?
Заранее спасибо.

TimeSelectorViewController:

import UIKit

class TimeSelectorController: UICollectionViewController, 
UICollectionViewDelegateFlowLayout, UITextViewDelegate {

let cellId = "cellId"

let timeSelectorCell = TimeSelectorCell()


override func viewDidLoad() {
    super.viewDidLoad()

    collectionView.backgroundColor = .yellow

    collectionView.reloadData()
    navigationItem.leftBarButtonItem = UIBarButtonItem(title: "V", style: .plain, target: self, action: #selector(handleBack))

    collectionView.register(TimeSelectorCell.self, forCellWithReuseIdentifier: cellId)
}


@objc fileprivate func handleBack() {
    dismiss(animated: true, completion: nil)
}


override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return 5
}


override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) as! TimeSelectorCell

    cell.textView.inputView = timeSelectorCell.timePicker
    cell.textView.text = timeSelectorCell.handleSelectedTime()

    return cell
}


func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {

    return CGSize(width: view.frame.width, height: 50)
   }

}

TableSelectorCell:

import UIKit

class TimeSelectorCell: UICollectionViewCell {


let textView: UITextView = {
    let tv = UITextView()
    tv.text = "Time Goes Here"
    tv.isEditable = false
    return tv
}()

lazy var timePicker: UIDatePicker = {
    let picker = UIDatePicker()
    picker.datePickerMode = .time
    picker.minuteInterval = 10
    //picker.minuteInterval = 30
    picker.addTarget(self, action: #selector(handleSelectedTime), for: .valueChanged)
    return picker
}()

@objc func handleSelectedTime() -> String {
    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = "HH:mm"
    let selectTime = dateFormatter.string(from: timePicker.date)

    textView.inputView = timePicker
    textView.text = selectTime

    print(selectTime)

    return selectTime
}


override init(frame: CGRect) {
    super.init(frame: frame)

    addSubview(textView)
    textView.anchor(top: topAnchor, left: leftAnchor, bottom: bottomAnchor, right: rightAnchor, paddingTop: 0, paddingLeft: 0, paddingBottom: 0, paddingRight: 0, height: 0, width: 0)
}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
   }
 }

1 Ответ

0 голосов
/ 27 августа 2018

Ваш dateFormat будет следить за временем в 12-часовом формате

dateFormatter.dateFormat = "h:mm a"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...