- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的 TextView 周围有边框;为此,我做了以下工作:
textView.layer.borderWidth = 5.0f;
textView.layer.borderColor = [UIColor grayColor];
我收到以下警告:
warning: passing argument 1 of 'setBorderColor:' from incompatible pointer type
更新1:我的边框不可见
最佳答案
您的问题是 -[CALayer setBorderColor:]
采用 CGColorRef
类型的对象。您需要做的是将颜色对象转换为符合:
textView.layer.borderColor = [UIColor grayColor].CGColor;
希望对您有所帮助!
关于iphone - 问题在 -[CALayer setBorderColor :],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4373925/
我想在我的 TextView 周围有边框;为此,我做了以下工作: textView.layer.borderWidth = 5.0f; textView.layer.borderColor = [UI
一切又见鬼了。我似乎无法将 RGBA 颜色分配给图层的 setBorderColor 方法。 我尝试过: UIColor *myColor = [UIColor colorWithRed:51.0f/
我正在尝试在 Storyboard 上设置 UIButton 边框颜色: 但按钮仍然是黑色。当我尝试使用 layer.borderColor 时,它根本不显示边框。 如何选择颜色? 谢谢 //更新 我
本文整理了Java中com.sitewhere.rest.model.device.Zone.setBorderColor()方法的一些代码示例,展示了Zone.setBorderColor()的具体
本文整理了Java中com.sitewhere.rest.model.area.Zone.setBorderColor()方法的一些代码示例,展示了Zone.setBorderColor()的具体用法
本文整理了Java中com.sitewhere.rest.model.area.request.ZoneCreateRequest.setBorderColor()方法的一些代码示例,展示了ZoneC
本文整理了Java中com.sitewhere.rest.model.device.request.ZoneCreateRequest.setBorderColor()方法的一些代码示例,展示了Zon
我在两个不同的类(都是 UIView 的子类)中有以下代码。在一个地方它工作正常,绘制了边框。在另一个地方,我收到有关未找到方法的警告,当然也没有绘制边框。这怎么可能? UIView* test =
我是一名优秀的程序员,十分优秀!