We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d8be3 commit c22bfadCopy full SHA for c22bfad
MZTimerLabelDemo/MZTimerLabelDemo/MZTLViewController.m
@@ -153,6 +153,12 @@ - (void)viewDidLoad
153
[timerExample13 setCountDownTime:999];
154
NSString* text = @"timer here in text";
155
NSRange r = [text rangeOfString:@"here"];
156
+
157
+ UIColor* fgColor = [UIColor redColor];
158
+ NSDictionary* attributesForRange = @{
159
+ NSForegroundColorAttributeName: fgColor,
160
+ };
161
+ timerExample13.attributedDictionaryForTextInRange = attributesForRange;
162
timerExample13.text = text;
163
timerExample13.textRange = r;
164
timerExample13.timeFormat = @"ss";
0 commit comments