Mam następujący kod:
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];
Problem polega na tym, że gdy ciąg znaków w tekście nie jest długi, pokazuje dobrze (1-2 cyfry). Jednak gdy jest dość długi (3 ++ cyfry), widzę tylko czerwony przycisk bez tekstu w środku. Jak to dostosować?
Nie sądzę, żeby:
[button.titleLabel setAdjustsFontSizeToFitWidth:YES];
wykonuje pracę, prawda?
titleButton.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)