Я занимаюсь реализацией AQGridView, и все идет хорошо.
Но теперь я получаю сообщение об ошибке ниже.
- (AQGridViewCell *) gridView: (AQGridView *)inGridView cellForItemAtIndex: (NSUInteger) index;
{
MagazineCell *cell = (MagazineCell *)[inGridView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [MagazineCell cell];
cell.reuseIdentifier = @"cell";
//Assigning to property with 'readonly' atribute not allowed
}
cell.backgroundColor = [UIColor clearColor];
cell.selectionStyle = AQGridViewCellSelectionStyleGlow;
cell.edicaoLabel.text = [[edicoesArray objectAtIndex:index] name];
cell.dataLabel.text = [[edicoesArray objectAtIndex:index] name];
return cell;
}
Я пытался сделать это для файла head
@property(nonatomic, readwrite) NSString * reuseIdentifier;
Я тоже пробовал
@property(nonatomic, assign) NSString * reuseIdentifier;
Но все равно нет работы.
Я скачал пример проекта 'Актеры для Netflix' https://github.com/adrianco/Actors-for-Netflix-on-iPad/
И этот код имеет ту же проблему, когда я пытаюсь построить, и препроцессор также видит это.
В этом примере не объявляется свойство в заголовке файла класса, я попытался использовать его в своем проекте в качестве попытки решить проблему.
Кто-то может увидеть в чем проблема?
спасибо!