我在 Aaron 为 Mac os X 编写的 Cocoa 编程的第 17 章,在示例中他将 NSView 嵌入到 NSScrollView 中。
为了练习,我还以编程方式向视图添加了一个 NSButton。
问题是按钮的奇怪行为,它首先出现在滚动视图上,但是当我向下移动垂直滚动条时,按钮消失并重新出现在滚动视图的底部。因为这可能会令人困惑(也很难解释),我制作了一个视频来更好地描述这个问题:
http://tinypic.com/player.php?v=k1sacz&s=6
我将 NSView 子类化并称为类 StretchView (正如书中所说)。
这是代码:
#import <Cocoa/Cocoa.h>
@interface StretchView : NSView
{
@private
NSBezierPath* path;
}
- (NSPoint) randomPoint;
- (IBAction) click : (id) sender;
@end
#import "StretchView.h"
@implementation StretchView
- (void) awakeFromNib
{
// Here I add the button
NSView* view=self;
NSButton* button=[[NSButton alloc] initWithFrame: NSMakeRect(10, 10, 200, 100)];
[button setTitle: @"Click me"];
[button setTarget: self];
[button setAction: @selector(click:)];
[view addSubview: button];
}
- (IBAction) click:(id)sender
{
NSLog(@"Button clicked");
}
- (void) drawRect:(NSRect)dirtyRect
{
NSRect bounds=[self bounds];
[[NSColor greenColor] set];
[NSBezierPath fillRect: bounds];
[[NSColor whiteColor] set];
[path fill];
}
- (id) initWithFrame:(NSRect)frameRect
{
self=[super initWithFrame: frameRect];
if(self)
{
// here i dra some random curves to the view
NSPoint p1,p2;
srandom((unsigned int)time(NULL));
path=[NSBezierPath bezierPath];
[path setLineWidth: 3.0];
p1=[self randomPoint];
[path moveToPoint: p1];
for(int i=0; i<15; i++)
{
p1=[self randomPoint];
p2=[self randomPoint];
[path curveToPoint: [path currentPoint] controlPoint1: p1 controlPoint2: p2 ];
[path moveToPoint: p1];
}
[path closePath];
}
return self;
}
- (NSPoint) randomPoint
{
NSPoint result;
NSRect r=[self bounds];
result.x=r.origin.x+random()%(int)r.size.width;
result.y=r.origin.y+random()%(int)r.size.height;
return result;
}
@end
问题:
1)为什么按钮消失 - 重新出现以及如何避免这个问题?
2) 为什么曲线用白色填充?我想把它们画成细线,而不是填充。