我在这里按照答案:
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
...
}
我试图联系戴夫,但我还不能发表评论,请指教。