self.parentViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tablebackground.png"]];
self.tableView.backgroundColor = [UIColor clearColor];
self.parentViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tablebackground.png"]];
self.tableView.backgroundColor = [UIColor clearColor];
self.navigationItem.backBarButtonItem =
[[UIBarButtonItem alloc] initWithTitle:@"Back"
style:UIBarButtonItemStylePlain
target:nil
action:nil];
UIImage *background = [UIImage imageNamed:tableViewCellBackgroundImage];
UIImageView *cellBackgroundView = [[UIImageView alloc] initWithImage:background];
cellBackgroundView.image = background;
tableCell.backgroundView = cellBackgroundView;
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
Recent Comments