I' doing the implementation of AQGridView, and everything was going well.

But, now I'm getting the error below.

- (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;
}


I tried to do this on head file

   @property(nonatomic, readwrite) NSString * reuseIdentifier;


I also tried


@property(nonatomic, assign) NSString * reuseIdentifier;


But still no work.

I downloaded de example of project '*Actors for Netflix*'
https://github.com/adrianco/Actors-for-Netflix-on-iPad/

And this code have the same problem when I try to build, and the
pre-processor also see it.

This example dont declare the property on header of class file, I tried it
on my project as an attempt to fix the problem.

Someone can see the what is the problem?

thanks!

-- 
*Fernando Aureliano*
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to