Duplicar posibles:
Change background of a grouped UITableViewConjunto color de fondo en UITableView en IOS 6
no soy capaz de cambiar el color de fondo de UITableView si es . Mi código:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
Ayuda!
Duplicar posibles:
Change background of a grouped UITableViewConjunto color de fondo en UITableView en IOS 6
no soy capaz de cambiar el color de fondo de UITableView si es . Mi código:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
Ayuda!
Es posible que necesite añadir un poco de código. Try -
[UITableView setBackgroundView: nil];
o también puede hacer:
UIView* bview = [[UIView alloc] init];
bview.backgroundColor = [UIColor yellowColor];
[tableView setBackgroundView:bview];
Ambos funcionarán ..
Usted, además, que desactivar el fondo de la vista:
[addressNewTbl setBackgroundView:nil];
¿Usted intentó
addressNewTbl.backgroundView = nil;
[addressNewTbl setBackgroundColor:[UIColor redColor]];
En lugar de establecer el color de fondo de toda la UITableView
, trate de lo que sucede cuando establecer el color de fondo backgroundView
.
en la fuente de datos cellForRowAtIndexPath establecer
[cell setBackgroundColor:[UIcolor redColor]];
OP es sobre el fondo de la tabla no el fondo de la celda .. – Maulik
Bienvenido a la pila method.try. Si obtuvo su respuesta, entonces debe aceptar esa respuesta ... – Maulik