-
Notifications
You must be signed in to change notification settings - Fork 459
Closed
Description
- (NSArray<NSString *> *)monthNames {
if (!_monthNames) {
if (self.monthNameType == BRMonthNameTypeFullName) {
_monthNames = @[@"January", @"February", @"March", @"April", @"May", @"June", @"July", @"August", @"September", @"October", @"November", @"December"];
} else {
_monthNames = @[@"Jan", @"Feb", @"Mar", @"Apr", @"May", @"Jun", @"Jul", @"Aug", @"Sep", @"Oct", @"Nov", @"Dec"];
}
}
return _monthNames;
}
Metadata
Metadata
Assignees
Labels
No labels