本文介绍了UILabel插入效果可能吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在向UILabel提供边境

I am giving border to UILabel with

Label.text = lbltext;
Label.layer.borderColor = [[UIColor grayColor] CGColor];
Label.layer.borderWidth = 2;

但是文本和边框之间没有空格。

所以我怎么能在我的标签中设置像UIButton这样的插入效果?

But There is no space between text and border.
so how can i set inset effect like UIButton in my Label?

谢谢。

推荐答案

将标签放在容器视图中,并将边框应用于容器。

Put the label in a container view and apply the border to the container.

这篇关于UILabel插入效果可能吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:59