iphone – label.layer.borderColor = …无法正常工作(Xcode 4.3.2)

iphone – label.layer.borderColor = …无法正常工作(Xcode 4.3.2),第1张

概述我在一个类中工作,该类是UITableViewCell的子类,并且在.h中声明了firstLabel和secondLabel属性,并且在.m中是@synthesize.当我以编程方式格式化UILabels时,我尝试在firstLabel周围设置边框.根据 this question给出的答案,我试图在我的项目中做同样的事情. firstLabel.layer.borderColor = [UICo 我在一个类中工作,该类是UItableVIEwCell的子类,并且在.h中声明了firstLabel和secondLabel属性,并且在.m中是@synthesize.当我以编程方式格式化UILabels时,我尝试在firstLabel周围设置边框.根据 this question给出的答案,我试图在我的项目中做同样的事情.

firstLabel.layer.bordercolor = [UIcolor blackcolor].CGcolor;

我键入firstLabel.layer后,问题是它无法识别它.并点击’esc'(获得完成列表)Xcode没有任何结果.问题是什么?

注意:如果我输入

firstLabel.textAlignment = UITextAlignmentCenter;

它工作正常,行为符合预期.

解决方法 您需要导入QuartzCore标头. #import< QuartzCore / QuartzCore.h>

(并且不要忘记添加QuartzCore库,否则在尝试构建时会出现链接器错误).

总结

以上是内存溢出为你收集整理的iphone – label.layer.borderColor = …无法正常工作(Xcode 4.3.2)全部内容,希望文章能够帮你解决iphone – label.layer.borderColor = …无法正常工作(Xcode 4.3.2)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1058342.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存