我有一个包含图像的 NSSegmentedControl(todayButton)。我正在尝试使用以下方法在图像上绘制一些文本:
NSImage *img = [todayButton imageForSegment:0]
[img lockFocus]
[@"15" drawAtPoint:NSZeroPoint withAttributes:nil]
[img unlockFocus]
[img setTemplate:YES]
图像被设置为模板,不会引发错误,但图像上不会出现文本。