1

我创建了一个非常简单的自定义平面按钮:

@implementation HAFlatButton

+ (id)buttonWithColor:(UIColor *)aColor
{
    id button = [super buttonWithType:UIButtonTypeCustom];

    [button setFlatColor:aColor];

    CGRect frame = [button frame];
    frame.size.height = 200;
    [button setFrame:frame];

    return button;
}

+ (id)defaultButton
{
    return [HAFlatButton buttonWithColor:[HAColors buttonColor]];
}

- (void)setFlatColor:(UIColor *)flatColor
{
    _flatColor = flatColor;
    [self setNeedsDisplay];
}

- (void)drawRect:(CGRect)rect {
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    CGContextRef context = UIGraphicsGetCurrentContext();

    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:4.0];
    CGContextSaveGState(context);
    [path addClip];

    [_flatColor setFill];
    CGContextFillRect(context, rect);

    CGColorSpaceRelease(colorSpace);
}

@end

当我使用 [HAFlatButton defaultButton] 将按钮添加到我的自动布局时,它只比按钮文本略高,但是当我将 [UIButton buttonWithType:UIButtonTypeRoundedRect] 添加到我的布局中时,它在标签周围有适当的插图。

我究竟做错了什么?

4

1 回答 1

1

您需要执行以下一项或多项操作:

添加高度约束。

覆盖intrinsicSize 返回值。

调整垂直内容拥抱优先级。

于 2013-08-02T23:20:51.367 回答