iPhone SDK synthetisiert BOOL Array
Ich erhalte einen Compiler-Fehler, wenn ich versuche, ein Bool-Array wie folgt zu synthetisieren:
// .h
#import <UIKit/UIKit.h>
@interface SomeViewController : UIViewController {
BOOL boolArray[100];
}
@property (nonatomic) BOOL boolArray;
@end
//m
#import "SomeViewController"
@implementation SomeViewController
@synthesize boolArray;
@end
Wahrscheinlich habe ich einen fundamentalen Fehler gemacht, aber ich kann ihn jetzt feststellen, dass das Synthetisieren mit boolArray [100] auch nicht funktioniert hat.