Tengo el siguiente código:
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0.0, 0.0, 25, 25);
[[button layer] setCornerRadius:5.0f];
[[button layer] setMasksToBounds:YES];
[[button layer] setBackgroundColor:[[UIColor redColor] CGColor]];
[button.titleLabel setFrame:CGRectMake(0,0, 25, 25)];
[button setTitle:[NSString stringWithFormat:@"%@", [[topics objectAtIndex:indexPath.row] unread]] forState:UIControlStateNormal];
El problema es que cuando la cadena en el texto no es larga, se muestra bien (1-2 dígitos). Sin embargo, cuando es bastante largo (3 ++ dígitos), todo lo que puedo ver es un botón rojo, sin texto dentro. ¿Cómo ajusto esto?
No creo que
[button.titleLabel setAdjustsFontSizeToFitWidth:YES];
hace el trabajo, ¿verdad?
titleButton.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)