0

I'm trying to develop a new static library using Xcode 3.2.3.

Xcode is giving strange error messages show below in my G.h file. What is the cause of these errors?

Charles

#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
4

1 回答 1

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 程序,不是吗?

于 2010-08-26T20:57:41.563 回答