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
the problem that it also demand's repopulate dataSource array for years ( 10 000 by default).
It maybe seems that years are always presented as a numbers, and only take into consideration months that could have different names in other languages, but I found that this isn't true for japanese language (maybe others too)
Thus
- (void)initPickerData () {
....
_months = [dateFormatter monthSymbols]; /* it works only for months (looks good for japanese)// Form list of years [dateFormatter setDateFormat:@"yyyy"]; /* this doesn't and needs to be rewritten as @"yyyy年MM月dd日" */
I dunno maybe exists a better solution
The text was updated successfully, but these errors were encountered:
NSLocale property isn't considered at all, 'cos property is set after
-(void)initCommon
method in
, so it gives no effect.
To force locale work properly I had to change:
to
the problem that it also demand's repopulate dataSource array for years ( 10 000 by default).
It maybe seems that years are always presented as a numbers, and only take into consideration months that could have different names in other languages, but I found that this isn't true for japanese language (maybe others too)
Thus
I dunno maybe exists a better solution
The text was updated successfully, but these errors were encountered: