Livejournal
Log in
Post
Friends
My journal
mr_st
ПРостой способ сделать прозрачную ячейку в 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
Leave a comment
Read comments 2
Previous post
Next post
Up