2012년 1월 12일 목요일

iPhone - TableViewController Background Image ( 이미지 배경 )

- UITableViewController 이미지 배경

 - (void)viewDidLoad {

     UIImageView* imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg.png"]];
    self.tableView.backgroundView = imageView;
    [imageView release];
 }

- UITableViewController 투명한/컬러 배경 (Transparent/Color Background)

  - (void)viewDidLoad {


    self.tableView.backgroundColor = [UIColor clearColor]; // [UIColor blackColor];
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; // 셀 구분 라인 제거
   

 }

댓글 없음:

댓글 쓰기