NSSlider自定义拖动时会有色块的处理
2021-09-27 本文已影响0人
devileatapple
在自定义的slider的.m文件中添加下面的方法可以解决快速拖动有不规则色块的问题
-(void)setNeedsDisplayInRect:(NSRect)invalidRect{
[super setNeedsDisplayInRect:[self bounds]];
}
在自定义的slider的.m文件中添加下面的方法可以解决快速拖动有不规则色块的问题
-(void)setNeedsDisplayInRect:(NSRect)invalidRect{
[super setNeedsDisplayInRect:[self bounds]];
}