作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了 NSSegmentedCell 的子类并实现了drawWithFrame,如下所示:
#import "CustomSegmentedCell.h"
@implementation CustomSegmentedCell
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
int i=0, count=[self segmentCount];
NSRect segmentFrame=cellFrame;
for(i=0; i<count; i++) {
segmentFrame.size.width=[self widthForSegment:i];
[NSGraphicsContext saveGraphicsState];
// Make sure that segment drawing is not allowed to spill out into other segments
NSBezierPath* clipPath = [NSBezierPath bezierPathWithRect: segmentFrame];
[clipPath addClip];
[self drawSegment:i inFrame:segmentFrame withView:controlView];
[NSGraphicsContext restoreGraphicsState];
segmentFrame.origin.x+=segmentFrame.size.width;
}
_lastDrawRect=cellFrame;
}
@end
问题是分段在应用程序首次启动时没有绘制,只有当我用鼠标单击分段控件应该绘制的空白区域时,它才可见。请告诉我,我在这里缺少什么。
谢谢
最佳答案
子类化并实现drawSegment:inFrame:withView:
- (void)drawSegment:(NSInteger)segment inFrame:(NSRect)frame withView:(NSView *)controlView
{
NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:frame xRadius:8 yRadius:8];
[path setClip];
[path setLineWidth:2.5];
[[NSColor grayColor] setStroke];
NSColor* bgColr;
if (segment%2) {
bgColr = [NSColor blackColor];
}
else {
bgColr = [NSColor redColor];
}
[bgColr setFill];
[NSBezierPath fillRect:frame];
}
关于cocoa - NSSegmentedCell 子类绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12000720/
我创建了 NSSegmentedCell 的子类并实现了drawWithFrame,如下所示: #import "CustomSegmentedCell.h" @implementation Cust
对于如何指示以编程方式创建的 NSSegmentedControl 使用 NSSegmentedCell 的子类实例,我有点困惑。 如果我想在使用 IB 构建的 NSSegmentedControl
我正在尝试在我正在开发的 Cocoa 编辑器中实现一些基本的选项卡。我正在使用 NSSegmentedControl 并向其添加段作为选项卡。我正在为选项卡使用自定义 NSSegmentedCell
我正在使用 BGHUDSegmentedCell 的一个版本来绘制 HUD 样式的分段控件 (NSSegmentedControl)。 但是,当用户单击某个段时,我看不到任何方法可以将单元格绘制为“按
我是一名优秀的程序员,十分优秀!