Created
August 24, 2015 04:06
-
-
Save SlaunchaMan/815b3e7214ceb2000e64 to your computer and use it in GitHub Desktop.
Getting around Swift 2’s lack of compatibility with vararg methods for complication text providers.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface CLKTextProvider (NNNCompoundTextProviding) | |
+ (nonnull CLKTextProvider *)nnn_textProviderByJoiningProvider:(nonnull CLKTextProvider *)provider1 andProvider:(nonnull CLKTextProvider *)provider2 withString:(nullable NSString *)joinString; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation CLKTextProvider (NNNCompoundTextProviding) | |
+ (nonnull CLKTextProvider *)nnn_textProviderByJoiningProvider:(nonnull CLKTextProvider *)provider1 andProvider:(nonnull CLKTextProvider *)provider2 withString:(nullable NSString *)joinString | |
{ | |
NSString *textProviderToken = @"%@"; | |
NSString *formatString; | |
if (joinString != nil) { | |
formatString = [NSString stringWithFormat:@"%@%@%@", | |
textProviderToken, | |
joinString, | |
textProviderToken]; | |
} | |
else { | |
formatString = [NSString stringWithFormat:@"%@%@", | |
textProviderToken, | |
textProviderToken]; | |
} | |
return [self textProviderWithFormat:formatString, provider1, provider2]; | |
} | |
@end |
5 years later, this still appears to be the only way to have compound text providers within a swift project.
@SlaunchaMan thanks for saving me 1 hour.
UPDATE: As noted in the comments below, on watchOS 6 it is possible to use init(format:_:)
. 👍
It took them until watchOS 6 to add init(format:_:)
to CLKTextProvider
, so a correction to the above comments is: For watchOS 5 and prior, this is the only good way to do it...
init(format:_:)
can be used to create multi-color text. (Top left corner)
Can someone post an example how to use the init(format:_:)
? @gongzhang @UInt2048
let text1 = CLKSimpleTextProvider(text: "red")
text1.tintColor = .red
let text2= CLKSimpleTextProvider(text: "green")
text2.tintColor = .green
// secret sauce:
// just pass CLKTextProvider objects as arguments
let finalText = CLKTextProvider(format: "%@ and %@", text1, text2)
Thank you very much! Just wanted to add how to use it with CLKRelativeDateTextProvider
:
let myComplicationTemplate = CLKComplicationTemplateUtilitarianLargeFlat()
let dateProvider = CLKRelativeDateTextProvider()
dateProvider.date = Date()
dateProvider.calendarUnits = [.hour, .minute]
dateProvider.relativeDateStyle = .naturalAbbreviated
let finalText = CLKTextProvider(format: "GBT * %@", dateProvider)
myComplicationTemplate.textProvider = finalText
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
4 years later, this still appears to be the only way to have compound text providers within a swift project.