Iphone UIButton color de fondo
Estoy creando algunaUIButton
s programáticamente en un bucle, pero tengo algunos problemas para configurar el color de fondo del botón.
El color del botón siempre aparece en blanco. Pero funciona bien, solo estoy usando 2 colores en el color de fondo. Por ejemplo: rojo: 255 verde: 0 azul: 200
Aquí está el código que estoy usando para agregar el botón.
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(80, 20 + (i*75), 200, 75);
button.layer.cornerRadius = 10;
button.layer.borderWidth = 1;
[button setTitle:@"saf" forState:UIControlStateNormal];
[button addTarget:self action:@selector(moveLocation:) forControlEvents:UIControlEventTouchUpInside];
[button setBackgroundColor:[UIColor colorWithRed:255 green:180 blue:200 alpha:1]];
button.autoresizingMask = UIViewAutoresizingFlexibleWidth;
[scrollView addSubview:button];