UIColor expected a type after update to xCode 7.3

2019-03-05 06:37发布

My project stop to compile after was updated to 7.3 version. For this moment main problem is in header files when I want to return UIColor. xCode tells me Expected a type error. Is there some way to handle with this situation?

Edit: my code (nothing special)

#import <Foundation/Foundation.h>

@interface NSString (Color)

- (UIColor *)rgbColor; //Expected a type
- (UIColor *)hexColor; //Expected a type

@end

2条回答
欢心
2楼-- · 2019-03-05 06:56

Use

@class UIColor;

above @interface.

It'll fix the expected a type error.

查看更多
何必那么认真
3楼-- · 2019-03-05 07:15

You should import if you are using UIColor.

查看更多
登录 后发表回答