我需要扩展 NSProgressIndicator 并增加它的大小。到目前为止,我已经创建了一个自定义类并实现了以下代码作为覆盖drawRect:
-(void)drawRect:(NSRect)dirtyRect
{
dirtyRect.size = NSMakeSize(98.0f, 98.0f);
[super drawRect:dirtyRect];
}
但是在绘制控件时我没有任何区别。提前感谢所有帮助
我需要扩展 NSProgressIndicator 并增加它的大小。到目前为止,我已经创建了一个自定义类并实现了以下代码作为覆盖drawRect:
-(void)drawRect:(NSRect)dirtyRect
{
dirtyRect.size = NSMakeSize(98.0f, 98.0f);
[super drawRect:dirtyRect];
}
但是在绘制控件时我没有任何区别。提前感谢所有帮助