菜鸟教程小白 发表于 2022-12-13 01:34:20

IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量?


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

<p>DrawRect: 方法</p>

<pre><code>- (void)drawRect:(CGRect)rect {
;

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetStrokeColorWithColor(context, .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);
</code></pre>

<p>}</p>

<p> <img src="/image/01tyU.png" alt="This is the button"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在drawRect方法中使用<code>self.titleEdgeInsets=UIEdgeInsetsMake(0, 5, 0, 5);</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15496149/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15496149/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS 6 - 自定义 UIButton 如何给我的 titleLabel 留出余量?