Frage : Objektives-c seltsames non-copile

Ich lasse ein seltsames nicht-kompilieren in Obj C

I habe ein fehlerloses frisbee.h., das an zweiter Stelle in der Liste von classes


@interface Frisbee ist {

int fx, fy;
UIImageView frisImageView;


@end

A haben auch TestViewController.h angebrachtes below
that tut nicht compile.
It doesn, t-Entdeckung Frisbee „keine solche Akte, oder Verzeichnis“ und I can sehen warum?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
6:
37:
38:
39:
// TestViewController.h
//-Test
//
// verursachte durch James Hancock auf 6/27/10.
//-copyright __MyCompanyName 2010. Alle Rechte vorbehalten.
//

#import 
#import 


@interface TestViewController: UIViewController {
	
	IBOutlet UILabel *label1;
	IBOutlet UILabel *label2;
	UIImageView *imageView, *ballImageView, *campFireView;
	
	CGRect myViewFrame;
	CGRect ballViewFrame;
	int XLocation;
	int YLocation;
	int starSizeX;
	int starSizeY;
	UIImage *myImage, *ballImage;
	NSTimer *mainTimer;
	int imgCenterX;
	int-Timer;
	int lastx;
	int testx, leicht reizbar, ballx, bally;
	
	//frisbee * Frisbees;
	
	UIImage* animationImages;
	
	
}

@end

Antwort : Objektives-c seltsames non-copile

Sollte sein

@interface Frisbee: NSObject {
      int fx, fy;
    UIImageView frisImageView;
}
@end

Die niedrige Kategorie ist NSObject. @interface und @end sind die Schlüsselwörter. Fallvariablen (fx, fy, frisImageView) sollten innen sein {}.
Weitere Lösungen  
 
programming4us programming4us