UITableView 의 배경색을 바꾸면 iPhone 에서는 정상 적용이 되나 iPad 에서는 기본값으로 나온다.
tableView 의 backgroundView 에 빈 view 를 하나 생성해주면 된다.
UIView *view = [[UIView alloc] init];
self.tableView.backgroundView = view;
[view release];
'Mobile > iOS문제' 카테고리의 다른 글
Unbalanced calls to begin/end appearange transitions for (0) | 2012.07.17 |
---|---|
implementation of viewDidUnload caused the view to be reloaded. This will adversely impact system performance. (0) | 2012.07.06 |
[SVN] @2x add, delete 등 명령어 사용하기 (0) | 2012.07.04 |
UITapGesture 사용시 UIButton 미동작 (0) | 2012.06.04 |
Archive 후 Organizer 에 보이지 않는 현상 (0) | 2012.05.15 |