ПРостой способ сделать прозрачную ячейку в UITableView

Nov 26, 2008 16:24

UITableViewCell* cell = [[UITableViewCell alloc] initWithFrame:CGRectZero];

UIView *bg = [[UIView alloc] initWithFrame:CGRectZero];
bg.opaque = NO;
cell.backgroundView = bg;
[bg release];

development, iphone

Previous post Next post
Up