I am trying to call BOOL in +(void)
method but I can't. Why it would not set in +(void)
method? While it is working on all -(void)
methods.
.h
@property (nonatomic, assign) BOOL line;
.m
+ (void)normalizeCell:(UITableViewCell *)cell withLables:(NSArray *)lbls sx:(CGFloat)sx widths:(NSArray *)widths
if (![cell.contentView viewWithTag:22])
{
UIImageView *gb = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"table.png"]];
gb = 22;
[cell.contentView addSubview:gb];
[gb release];
}