I followed answer here:
https://stackoverflow.com/a/3233802/3850487
I was able to use @Dave code and it works great.
The only thing is I cannot seem to find a way to change font or size of my label.
[self.rssLabel setText:fullString];
[self.rssLabel setSpeed:0.03f];
[[self rssLabel] setFont:[NSFont boldSystemFontOfSize:100]];//NOT WORKING
Nothing happens at all , it's like it is not being affected.
The closest I got was when I added some code to - (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
...
}
I tried to contact dave, but I cannot comment yet, please advise.