We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0176e75 commit 4b8224dCopy full SHA for 4b8224d
Sources/KIF/Additions/UIView-Debugging.m
@@ -136,6 +136,11 @@ - (void)printDatePickerState {
136
case UIDatePickerModeCountDownTimer:
137
printf(" UIDatePickerModeCountDownTimer");
138
break;
139
+#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 170400 //__IPHONE_17_4
140
+ case UIDatePickerModeYearAndMonth:
141
+ printf(" UIDatePickerModeYearAndMonth");
142
+ break;
143
+#endif
144
}
145
printf(")");
146
printf(" (minute interval: %s)", @(datePicker.minuteInterval).stringValue.UTF8String);
0 commit comments