Hi all,
i'm using a SCTableViewModel to display some stored data, so nothing should be changed in the table.
titleField = [SCTextFieldCell cellWithText:@"title" withPlaceholder:@"" withBoundKey:@"1" withTextFieldTextValue:[defaults objectForKey:@"user_title"]];
titleField.editable = NO;
[section addCell:titleField];
With this code, i can still edit everything.
Did I miss anything?
cheers