Hello -

I have a table view with dynamic subclassed cells :

- (id)initWithFrame:(CGRect)aRect reuseIdentifier:(NSString *)identifier
{
        if (self = [super initWithFrame:aRect reuseIdentifier:identifier])
        {
                self.selectionStyle = UITableViewCellSelectionStyleNone;
[self setImage:[[UIImage imageNamed:@"WF-MyLocBu- DistBack.png"]autorelease]];

UIImageView *imageView = [[UIImageView alloc] initWithImage: produceImage];
                [self.contentView addSubview:imageView];
                [imageView release];
                
                CGRect frame = CGRectMake(60, 0, 140, 60);
                produceName = [[UILabel alloc] initWithFrame:frame];
                produceName.backgroundColor = [UIColor clearColor];
                produceName.opaque = YES;
                produceName.textAlignment = UITextAlignmentLeft;
                produceName.textColor = [UIColor whiteColor];
                produceName.font = [UIFont boldSystemFontOfSize:16];
                [self.contentView addSubview:produceName];
                [produceName release];
                
    }
        
    return self;
}


BUT The font is hard to read and actually gray and not white?

Thanks
James Cicenia
_______________________________________________

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