-1
我有這樣的代碼:繪製一個NSString與背景顏色來填充矩形
NSMutableParagraphStyle *style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
style.alignment = NSTextAlignmentCenter;
[ticketName.uppercaseString drawInRect:CGRectMake(xPos, yPos, badgeSize.width - UIBarcode.size.width, 44) withAttributes:@{NSFontAttributeName: FONT_NORMALX(40), NSForegroundColorAttributeName: [UIColor whiteColor], NSBackgroundColorAttributeName: [UIColor blackColor], NSParagraphStyleAttributeName: style}];
產生這樣的:
我要的是背景色(黑色)的「GA」填充給定的矩形,這樣它的一個黑色的大條,文字居中。這可能嗎?
嘗試添加空格,並吸引他們。 –
使用「UIBezierCurve」繪製矩形,填充該矩形,然後繪製字符串。 – beyowulf