1

私は答えを読んだ: 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];

しかし、実行しても何も起こりませんでした。手を貸していただけますか? ありがとうございました!

4

1 に答える 1

0
ScrollingTextView *test = [[ScrollingTextView alloc] init];

これを行うと、新しい ScrollingTextView を作成し、.xib で作成および初期化された Interface Builder を参照しないことを意味します。

viewcontroller で ScrollingTextViewIBOutletとしてセットアップします。

(IBOutlet)ScrollingTextView *test;

インターフェイス ビルダーから、ドラッグした CustomView をビュー コントローラーへの参照アウトレットとして割り当てます。これは、ScrollingTextView クラスを初期化する方法です。

setTest: と setSpeed: を呼び出すと、正常に動作するはずです。

于 2013-11-04T04:45:59.783 に答える