我在以下位置阅读了答案:iTunes Song Title Scrolling in Cocoa
这是我写的代码:
// ScrollingTextView.h
#import <Cocoa/Cocoa.h>
@interface ScrollingTextView : NSView {
NSTimer *scroller;
NSPoint point;
NSString *text;
NSTimeInterval speed;
CGFloat stringWidth;
}
@property (nonatomic, copy) NSString *text;
@property (nonatomic) NSTimeInterval speed;
@end
// ScrollingTextView.m
#import "ScrollingTextView.h"
@implementation ScrollingTextView
@synthesize text;
@synthesize speed;
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
}
return self;
}
- (void)dealloc {
[scroller invalidate];
}
- (void)setText:(NSString *)newText {
text = [newText copy];
NSLog(@"t: %@", text);
point = NSZeroPoint;
stringWidth = [newText sizeWithAttributes:nil].width;
if (scroller == nil && speed > 0 && text != nil) {
scroller = [NSTimer scheduledTimerWithTimeInterval:speed target:self selector:@selector(moveText:) userInfo:nil repeats:YES];
}
}
- (void)setSpeed:(NSTimeInterval)newSpeed {
if (newSpeed != speed) {
speed = newSpeed;
NSLog(@"s: %f", speed);
[scroller invalidate];
if (speed > 0 && text != nil) {
scroller = [NSTimer scheduledTimerWithTimeInterval:speed target:self selector:@selector(moveText:) userInfo:nil repeats:YES];
}
}
}
- (void)moveText:(NSTimer *)timer {
point.x = point.x - 1.0f;
[self setNeedsDisplay:YES];
}
- (void)drawRect:(NSRect)dirtyRect {
// Drawing code here.
[super drawRect:dirtyRect];
if (point.x + stringWidth < 0) {
point.x += dirtyRect.size.width;
}
[text drawAtPoint:point withAttributes:nil];
if (point.x < 0) {
NSPoint otherPoint = point;
otherPoint.x += dirtyRect.size.width;
[text drawAtPoint:otherPoint withAttributes:nil];
}
}
@end
然后我将一个 NSView 拖到 Interface Builder 的主窗口中,并将其类更改为“ScrollingTextView”。在控制器中我这样做:
ScrollingTextView *test = [[ScrollingTextView alloc] init];
[test setText:@"Test long text scrolling!"];
[test setSpeed:0.01];
但是我运行它时什么也没发生,你能帮我一把吗?谢谢!