Код: Выделить всё
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];
Я так не думаю:
Код: Выделить всё
[button.titleLabel setAdjustsFontSizeToFitWidth:YES];
Подробнее здесь: https://stackoverflow.com/questions/617 ... e-to-width
Мобильная версия