The Apple documentation states:
To participate in the appearance proxy API, tag your appearance property selectors in your header with UI_APPEARANCE_SELECTOR.
In Objective-C one can annotate properties with UI_APPEARANCE_SELECTOR
like this:
@property (nonatomic, strong) UIColor *foregroundColor UI_APPEARANCE_SELECTOR;
How can I do the same in Swift?