ios7 UITableView 사용시 배경화면 흰색으로 나오는 현상

|
ios7은 UITableView의 셀 배경이 기본으로 흰색으로 설정되있는 것 같습니다.


cellForRowAtIndexPath 함수에 아래의 내용을 추가합니다.

cell
.backgroundColor = [UIColor clearColor]; cell.backgroundView = [[UIView new] autorelease]; cell.selectedBackgroundView = [[UIView new] autorelease];


Trackback 0 And Comment 0