我需要创建一个带有图像和标题的 NSButton,但我不喜欢 cocoa 中的任何标准定位方法。
我决定子类化按钮单元并覆盖-imageRectForBounds:
and-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