我目前正在使用 NSScrollView ,当我滚动其中的按钮时,它会重新显示在它下面。我怎样才能解决这个问题。
这是问题的显示:
int x = 00; //position x
int y = 00; //pssition y
int width = 100;
int height = 40;
NSButton* a = [[NSButton alloc] initWithFrame:NSMakeRect(x, y, width, height)];
a.title = @"Scene";
//[a setButtonType:<#(NSButtonType)#>]; //Set what type button You want
[a setBezelStyle:NSSquareLineCapStyle]; //Set what style You want
[self.box addSubview:a];
现在,我知道按钮可以正确显示,看起来当我滚动时,它正在重绘。我根本不希望显示第一个下方的底部。