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
In my app the user can set a timespan in the app settings, which requires two time picker, one for the start and one for the end of the time span. In order to make sure the start time isn't set to a time later than the end time, I currently need to manually check and adjust the times after the user selected a value. However I would prefer to set a limit on the date/time picker itself.
The text was updated successfully, but these errors were encountered:
I recommend overriding tableView:willSelectRowAtIndexPath:. Using [self.settingsReader specifierForIndexPath:indexPath] you can fetch the specifier and check if you're dealing with the one you're interested in.
Then grab the cell and customize the datePicker in the IASKDatePickerViewCell.
In my app the user can set a timespan in the app settings, which requires two time picker, one for the start and one for the end of the time span. In order to make sure the start time isn't set to a time later than the end time, I currently need to manually check and adjust the times after the user selected a value. However I would prefer to set a limit on the date/time picker itself.
The text was updated successfully, but these errors were encountered: