I have created custom cell with xib.
NSArray *nibs = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = [nibs objectAtIndex:0];
I want to give cell Identifier to it.
I tried
cell.reuseIdentifier=@"";
But its readonly property.
Please help
If you create the table or cell in Interface Builder, you’ll have to set the reuse identifier in Interface Builder, since this property get’s set, when the object is created.
You can change (better: set) it programmatically only if you create the whole object programmatically and not in Interface Builder.