我需要创建一个同时包含图像和标题的NSButton,但我不喜欢cocoa中的任何标准定位方法。
我决定将按钮单元格子类化并覆盖-imageRectForBounds:
和-titleRectForBounds:
以提供我的自定义位置。问题是-titleRectForBounds:
方法被正常调用,但-imageRectForBounds:
不是。
按钮中的图像正常显示,因此单元格必须有一个框架来绘制图像,我不知道它从何处获取。
代码非常简单。目前我唯一做的就是继承NSButtonCell并覆盖这两个方法。然后在IB中我选择一个NSButton并将其单元类更改为我的自定义按钮单元。
以下是代码:
#import "JSButtonCell.h"
@implementation JSButtonCell
- (NSRect)titleRectForBounds:(NSRect)theRect
{
NSLog(@"Bounds for title");
NSLog(@"%@",NSStringFromRect(theRect));
NSRect titleRect = [super titleRectForBounds:theRect];
NSLog(@"Title rect");
NSLog(@"%@",NSStringFromRect(titleRect));
return titleRect;
}
- (NSRect)imageRectForBounds:(NSRect)theRect
{
NSLog(@"Bounds for image");
NSLog(@"%@",NSStringFromRect(theRect));
NSRect imageRect = [super imageRectForBounds:theRect];
NSLog(@"Image rect");
NSLog(@"%@",NSStringFromRect(imageRect));
imageRect.origin.y -= 20;
return imageRect;
}
@end
答案 0 :(得分:1)
我理解的调试很少,默认NSButtonCell
实现不会调用drawImage:withFrame:inView:
。为什么?我既没有在论坛上也没有在Apple文档中找到答案(如果有人解释 - 我会很高兴:)。我只需覆盖drawImage:withFrame:inView:
并致电imageRectForBounds:
:
- (void)drawImage:(NSImage *)image withFrame:(NSRect)frame inView:(NSView *)controlView
{
[super drawImage:image withFrame:[self imageRectForBounds:frame] inView:controlView];
}