I'm trying to import some category methods into my Swift file without any luck.
ios-Bridging-Header.h:
#import "UIColor+Hex.h"
UIColor+Hex.h
#import <UIKit/UIKit.h>
@interface UIColor (Hex)
+ (UIColor *)colorWithHex:(NSUInteger)hexInt;
+ (UIColor *)colorWithHexString:(NSString *)hexString;
@end
I would expect the autocomplete to reveal UIColor(hexInt: NSUInteger)
and UIColor(hexString: String)