2

NSTextfield の独自のクラス OMNTextfield サブクラスを使用してテキストを表示し、テキストの長さがコントロールの幅よりも大きい場合はテキストをアニメーション化します。

テキストは、iTunes の曲のタイトルのようにアニメーション化されます。それは魅力のように働きます!

今、テキストの色とテキストの配置を変更したいと思います。setTextcolor、setAlignment、viewWillDraw、cellClass などをしばらく検索しましたが、何も機能しません => 私のテキストはまだ黒です!

ここで完全なコードを見つけることができます (Xcode プロジェクト)

私の質問: NSTextfield サブクラスでテキストの色/配置を変更するにはどうすればよいですか?

この投稿によると、次のコードは機能するはずですが、機能しません!

-(void)viewWillDraw { // or whatever is the Appkit equivalent
      [super setTextColor:[NSColor redColor]];
}

完全なコード:

//
//  OMNTextField.h


#import <Cocoa/Cocoa.h>

@interface OMNTextField : NSTextField {
    NSTimer * scroller;
    NSPoint point;
    NSString * text;
    NSTimeInterval speed;
    CGFloat stringWidth;
}

- (void) setText:(NSString *)newText;

@property (nonatomic, copy) NSString * text;
@property (nonatomic) NSTimeInterval speed;

@end

//
//  OMNTextField.m

#import "OMNTextField.h"

@implementation OMNTextField

@synthesize text;
@synthesize speed;


- (void) dealloc {
    [text release];
    [scroller invalidate];
    [super dealloc];
}

- (void) setText:(NSString *)newText {
    NSLog(@"[%@ %@] *** ", NSStringFromClass([self class]), NSStringFromSelector(_cmd));
    [text release];
    text = [newText copy];
    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;

        [scroller invalidate];
        if (speed > 0 && text != nil) {
            scroller = [NSTimer scheduledTimerWithTimeInterval:speed target:self selector:@selector(moveText:) userInfo:nil repeats:YES];
        }
    }
}

-(void)viewWillDraw {
    [super setTextColor:[NSColor yellowColor]];
}


- (void) moveText:(NSTimer *)timer {
    if (stringWidth >= self.frame.size.width)
        point.x = point.x - 1.0f;

    [self setNeedsDisplay:YES];
}

- (void)drawRect:(NSRect)dirtyRect {
    CGFloat max;

    if (stringWidth >= dirtyRect.size.width)
        max = stringWidth;
    else
        max = dirtyRect.size.width;

    if (point.x + stringWidth < 0) {
        point.x += max ;
    }

    [text drawAtPoint:point withAttributes:nil];

    if (point.x < 0) {
        NSPoint otherPoint = point;
        otherPoint.x += max;
        [text drawAtPoint:otherPoint withAttributes:nil];
    }

}

@end
//
//  AppDelegate.h

#import <Cocoa/Cocoa.h>
#import "OMNTextField.h"

@interface AppDelegate : NSObject <NSApplicationDelegate>
{
}


@property (assign) IBOutlet OMNTextField *label2;
@property (assign) IBOutlet OMNTextField *label3;
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSView *view;

@end

//
//  AppDelegate.m


#import "AppDelegate.h"

@implementation AppDelegate

- (void)dealloc
{
    [super dealloc];
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{

    [self.label2 setText:@"Too shoort no need to move"];
    [self.label2 setSpeed:0.05];


    [self.label3 setText:@"Text Lenght > TextField.width => Automatically animate text to show all"];
    [self.label3 setSpeed:0.05];
}

@end

PS: 私のコードは Dave Delong コードに基づいています: iTunes Song Title Scrolling in Cocoa

4

2 に答える 2

9

ラインを交換する

[text drawAtPoint:point withAttributes:nil];

NSColor *color = [NSColor greenColor]; \\put something else here...
NSDictionary *attributes = [NSDictionary dictionaryWithObject:color forKey:NSForegroundColorAttributeName];
[text drawAtPoint:point withAttributes:attributes];
于 2012-10-12T19:26:11.403 に答える
0

Nate Chandler がテキストの色に NSDictionary * 属性を使用していると述べたように。

テキストの配置に関しては、 drawAtPoint:point の適切な値を計算して、テキストを中央に配置することができました

必要なすべての情報 stringWidth と、drawAtPoint:point の変数ポイントの適切な値を計算するための制御 NSTextfield 幅があります。

于 2012-10-14T10:34:22.477 に答える