Is there a way to add a margin / padding to a WKInterfaceLabel in Watchkit? Using UIEdgeInsets doesn't work.
Asked
Active
Viewed 2,235 times
12
-
2doesn't WatchKit use WKInterfaceLabel? – dOM Apr 08 '15 at 14:44
2 Answers
22
You should create a WKInterfaceGroup and add the WKInterfaceLabel inside the group. You can manage the margin/padding using that group.

Javier Flores Font
- 2,075
- 15
- 13
1
In your storyboard add your WKInterfaceLabel to a WKInterfaceGroup. Then in the properties for the group set the insets to custom. You can change the top, left, bottom, and right insets for the group.

Stephen Johnson
- 5,293
- 1
- 23
- 37