Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions UICountingLabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ typedef NSAttributedString* (^UICountingLabelAttributedFormatBlock)(float value)
@property (nonatomic, strong) NSString *format;
@property (nonatomic, assign) UILabelCountingMethod method;
@property (nonatomic, assign) NSTimeInterval animationDuration;
@property (nonatomic, assign) BOOL shouldBeLocalized;

@property (nonatomic, copy) UICountingLabelFormatBlock formatBlock;
@property (nonatomic, copy) UICountingLabelAttributedFormatBlock attributedFormatBlock;
Expand Down
12 changes: 10 additions & 2 deletions UICountingLabel.m
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,19 @@ - (void)setTextValue:(float)value
// check if counting with ints - cast to int
if([self.format rangeOfString:@"%(.*)d" options:NSRegularExpressionSearch].location != NSNotFound || [self.format rangeOfString:@"%(.*)i"].location != NSNotFound )
{
self.text = [NSString stringWithFormat:self.format,(int)value];
if (self.shouldBeLocalized) {
self.text = [NSString localizedStringWithFormat:self.format,(int)value];
} else {
self.text = [NSString stringWithFormat:self.format,(int)value];
}
}
else
{
self.text = [NSString stringWithFormat:self.format,value];
if (self.shouldBeLocalized) {
self.text = [NSString localizedStringWithFormat:self.format,value];
} else {
self.text = [NSString stringWithFormat:self.format,value];
}
}
}
}
Expand Down