我正在尝试使用Xcode 3.2.3开发一个新的静态库。
Xcode在我的G.h文件中显示下面显示的奇怪错误消息。 造成这些错误的原因是什么?
查尔斯
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
#import <UIKit/UIKitDefines.h>
@interface G : NSObject {
int fontSize, canvasWidth, canvasHeight;
}
UIColor *lightslategray;
error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
@property int fontSize, canvasWidth, canvasHeight;
-(void) DrawLine:(float)x1 :(float)y1 :(float)x2 :(float)y2 :(float) lineWidth: (UIColor *)color;
error: expected ')' before 'UIColor'
@end
答案 0 :(得分:0)
您的代码应该如下所示:
#import <UIKit/UIKit.h>
@interface G : NSObject {
int fontSize, canvasWidth, canvasHeight;
UIColor *lightslategray;
}
@property (nonatomic, assign) int fontSize;
@property (nonatomic, assign) int canvasWidth;
@property (nonatomic, assign) int canvasHeight;
-(void) drawLine: (float)x1 y1:(float)y1 x2:(float)x2 y2:(float)y2 lineWidth:(float) lineWidth color: (UIColor *)color;
@end
这是你的第一个Objective C程序,不是吗?