【发布时间】:2014-09-30 16:41:59
【问题描述】:
我在这里跟着回答:
https://stackoverflow.com/a/3233802/3850487
我能够使用@Dave 代码并且效果很好。
唯一的问题是我似乎找不到更改标签字体或大小的方法。
[self.rssLabel setText:fullString];
[self.rssLabel setSpeed:0.03f];
[[self rssLabel] setFont:[NSFont boldSystemFontOfSize:100]];//NOT WORKING
什么都没有发生,就像没有受到影响。
我最接近的是当我向- (void)drawRect:(NSRect)dirtyRect添加一些代码时
- (void)drawRect:(NSRect)dirtyRect {
// Drawing code here.
[[NSColor grayColor] set];//changed the background of the view
NSRectFill(dirtyRect); //not text color
...
}
我试图联系戴夫,但我还不能发表评论,请告知。
【问题讨论】:
标签: macos nstextfield nsfont