I am trying to set Roboto font and have added as target for watch kit extension, but it is still coming as nil. Can we set custom fonts in watch kit.
Yes, you can use custom fonts in WatchKit
Yano Ratheez
Its worked for me.. Using following Codes.
Add the custom Font to both WatchKit Extension and WatchKit App target Info.plist

Now you write the code following way,
NSMutableAttributedString *attString =[[NSMutableAttributedString alloc]
initWithString: @"Yano rocks! Always"];
[attString setAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"Open Sans" size:20.0]} range:NSMakeRange(0, attString.string.length)];
[self.loadingLabel setAttributedText:attString];
来源:https://stackoverflow.com/questions/28360525/not-able-to-set-custom-fonts-in-watchkit