我正在尝试将一些类别方法导入到我的 Swift 文件中,但没有任何运气。
ios-桥接-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
我希望自动完成功能能够揭示UIColor(hexInt: NSUInteger)
和UIColor(hexString: String)