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