在 Objective-C 中添加 UILabel,更改背景颜色
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
UILabel
有一个继承自UIView
的背景属性,将其设置为清除:UILabel
has a background property it inherits fromUIView
, set it to clear:试试这个:
--或者--
另外,请查看 UILabel类参考
Try this out:
--or--
Also, check out the UILabel Class Reference