There are a myriad of settings for NSAttributedParagraphStyle
that I can see in Interface Builder:
But none of these are for text kerning. Is there a way to adjust the text kerning in Xcode 7's Interface Builder for attributed text?
(Please don't answer with how to do this in code - I already know how to do that!)
You can actually do this without the use of a subclass through an extension.
While this won't actually show up in interface builder it will show up and work when you run your app.
Create a subclass of UILabel call it KerningLabel have it be comprised of the following code:
Drag out a label. Change it to your UILabel subclass. Adjust the kerning as desired.
In obj-c:
.h
.m
@end
A shortened attempt:
Swift 4 code: