You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.
Seems something changed with iOS 8. When compiling with the new SDK my dates won't scroll if the gesture is started inside one of the "date sub views".
Has anyone else seen this?
The text was updated successfully, but these errors were encountered:
// yes I had the same problem, what i did is I introduced scroll view and added DIDatePicker as its subview code bellow. NOTE: will need to set contentSize for scroll view manually @IBOutlet weak var dateView: UIView! // ui to add DIDatePicker as a subview to it @IBOutlet weak var scrollView: UIScrollView! // extra addition to get the scrolling effect when used inside table view
let datePicker = DIDatepicker(frame: self.dateView.frame)
self.scrollView.addSubview(datePicker) // will need to set contentSize for scroll view manually
Seems something changed with iOS 8. When compiling with the new SDK my dates won't scroll if the gesture is started inside one of the "date sub views".
Has anyone else seen this?
The text was updated successfully, but these errors were encountered: