2014. 10. 5. 21:34
모바일/아이폰
인터페이스 빌더에서 분명 테이블뷰와 셀뷰에
clear color로 설정해서 투명색 처리를 했더라도
ios7에서 배경색이 흰색으로 나타난다.
이럴경우엔 코드상에서 배경색을 설정하면 투명색으로 설정이 된다.
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
하위에
[tableView setBackgroundColor:[UIColor clearColor]];
[cell setBackgroundColor:[UIColor clearColor]];
'모바일 > 아이폰' 카테고리의 다른 글
Admob 한국 지원 사이트 (0) | 2013.10.01 |
---|---|
[애드몹] ACH/Wire 수익 지급 관련 (1) | 2013.07.26 |
[Xcode]Undefined symbols for architecture (0) | 2013.07.13 |
iPhone apps and app updates submitted must support the 4-inch display on iPhone 5. (0) | 2013.07.11 |
[ios] admob (0) | 2013.07.10 |