Как добавить публичное логическое свойство в мою модель Location? Пример: location.has_lights = YES;
Я не совсем понимаю, почему мне нужно сохранить NSString, но IDE показывает мнеошибка при попытке сохранить bool.
Этот код создает 'EXC_BAD_ACCESS'
RKLocation.h
#import <RestKit/RestKit.h>
@interface RKLocation : RKObject {
NSString *_name;
bool has_lights;
}
@property (nonatomic , retain) NSString *name;
@property (nonatomic) bool has_lights;
@end
RKLocation.m
#import "RKLocation.h"
@implementation RKLocation
@synthesize name = _name;
@synthesize has_lights;
- (void)dealloc {
[_name release];
[super dealloc];
}
@end