ios - 设置 TextView 边框颜色
<p><p>我想为我的 UITextView 边框设置银色。我试过这个:</p>
<pre><code>theGroupTextLabel.layer.borderWidth = 3.5f;
theGroupTextLabel.layer.borderColor = [ CGColor];
</code></pre>
<p>...但是在颜色选项中只有一些颜色,例如 whiteColor、BlackColor、Green...</p>
<p>如果我想要银子怎么办?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要为自定义颜色使用 RGB 值;</p>
<pre><code>CGFloat nRed=128.0/255.0;
CGFloat nBlue=98.0/255.0;
CGFloat nGreen=53.0/255.0;
UIColor *myColor=[initWithRed:nRed green:nBlue blue:nGreen alpha:1];
</code></pre>
<p> <a href="http://cloford.com/resources/colours/500col.htm" rel="noreferrer noopener nofollow">Choose RGB Values Here</a> </p>
<p>R:193 G:205 B:205 附近的东西会接近银</p></p>
<p style="font-size: 20px;">关于ios - 设置 TextView 边框颜色,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/13960039/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/13960039/
</a>
</p>
页:
[1]