OStack程序员社区-中国程序员成长平台

标题: IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:34
标题: IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量?

我在 drawRect: 方法中为我的 UIButton 子类绘制了一个插入矩形边框。 如您所见,该形状离我的按钮 titleLabel 框架太近了。如何设置 titleLabel 的最大宽度/边距以避免这种情况?

DrawRect: 方法

- (void)drawRectCGRect)rect {
[super drawRect:rect];

  CGContextRef context = UIGraphicsGetCurrentContext();

  CGContextSetStrokeColorWithColor(context, [UIColor bluecolor].CGColor);

CGContextSetLineWidth(context, 2.0);

CGContextMoveToPoint(context, 4,4);

CGContextAddLineToPoint(context, 56, 4);
CGContextAddLineToPoint(context, 56, 56);
CGContextAddLineToPoint(context, 4, 56);
CGContextAddLineToPoint(context, 4,3);

// and now draw the Path!
CGContextStrokePath(context);

}

This is the button



Best Answer-推荐答案


在drawRect方法中使用self.titleEdgeInsets=UIEdgeInsetsMake(0, 5, 0, 5);

关于IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15496149/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4