在 Objective-C 中添加 UILabel,更改背景颜色

发布于 2024-12-06 12:14:40 字数 340 浏览 0 评论 0原文

我使用 Objective C 添加一个 UILabel,周围有一个白色矩形。如何删除这个矩形以使背景显示出来? 我在文档中查找了 uilabel 视图,但没有看到任何背景内容。 代码

UILabel *mContact=[ [UILabel alloc] initWithFrame:CGRectMake(273,442,32,20)];
mContact.text=@"Contact";
mContact.font=[UIFont fontWithName:@"Helvetica" size:9.0 ];
[self.view addSubview:mContact];    

-Ted

I add a UILabel using objective c, have a white rectagle around them. How do I remove this rectangle so the background shows through?
I looked in the documnetion for uilabel view and did not see anything per to background.
code

UILabel *mContact=[ [UILabel alloc] initWithFrame:CGRectMake(273,442,32,20)];
mContact.text=@"Contact";
mContact.font=[UIFont fontWithName:@"Helvetica" size:9.0 ];
[self.view addSubview:mContact];    

-Ted

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北恋 2024-12-13 12:14:40

UILabel 有一个继承自 UIView 的背景属性,将其设置为清除:

@property(nonatomic, copy) UIColor *backgroundColor

mContact.backgroundColor = [UIColor clearColor];

UILabel has a background property it inherits from UIView, set it to clear:

@property(nonatomic, copy) UIColor *backgroundColor

mContact.backgroundColor = [UIColor clearColor];
古镇旧梦 2024-12-13 12:14:40

试试这个:

myLabel.backgroundColor = [UIColor clearColor];

--或者--

myLabel.backgroundColor = [UIColor whateverColorYouWant];

另外,请查看 UILabel类参考

Try this out:

myLabel.backgroundColor = [UIColor clearColor];

--or--

myLabel.backgroundColor = [UIColor whateverColorYouWant];

Also, check out the UILabel Class Reference

记忆で 2024-12-13 12:14:40
[mContact setBackgroundColor:[UIColor clearColor];
//or
mContact.backgroundColor = [UIColor clearColor];
[mContact setBackgroundColor:[UIColor clearColor];
//or
mContact.backgroundColor = [UIColor clearColor];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文