ฉันมีรหัสต่อไปนี้:
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];
ปัญหาคือเมื่อสตริงในข้อความไม่ยาวแสดงว่าดี (1-2 หลัก) อย่างไรก็ตามเมื่อมันค่อนข้างยาว (3 ++ หลัก) สิ่งที่ฉันเห็นคือปุ่มสีแดงไม่มีข้อความอยู่ข้างใน ฉันจะปรับสิ่งนี้ได้อย่างไร?
ฉันไม่คิดว่า:
[button.titleLabel setAdjustsFontSizeToFitWidth:YES];
ได้งานใช่ไหม?
titleButton.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)