UITableViewCellSelectionStyleGray的RGB值是什麼?十六進制值也是值得讚賞的。UITableViewCellSelectionStyleGray的RGB值是多少?
5
A
回答
5
使用Pixie
(可從蘋果公司的開發人員中心的應用程序Downloads For Apple Developers
下 - >Graphics Tools For Xcode
),以及採樣UITableViewCell
在selected
狀態與selectionStyle
屬性設置爲UITableViewCellSelectionStyleGray
顯示,sRGB值在0.85
來抓red
,和blue
。
乘以255
(轉換爲RGB)會爲每個產生216.75
。使用http://www.javascripter.net/faq/rgbtohex.htm處的「RGB-to-HEX轉換」工具和輸入217
可生成一個十六進制值D9D9D9
。
1
發現了完全適合由蘋果UITableViewCellSelectionStyleGray
實施UIColor
一個帖子:
UIColor* selectedColor = [UIColor colorWithRed:217.0/255.0
green:217.0/255.0
blue:217.0/255.0 alpha:1.0];
相關問題
- 1. UITableViewCellSelectionStyleGray是如何實現的?
- 2. RGB中白色的範圍是多少?
- 3. BDD的增值是多少?
- 4. Black的CieLuv值是多少?
- 5. UIFont的磅值是多少?
- 6. 返回值是多少?
- 7. rgb值的Argb值
- 8. 值到RGB值
- 9. solr comiit params的默認值是多少?
- 10. OpenMP中omp_set_max_active_levels的最佳值是多少?
- 11. unsigned int的最大值是多少?
- 12. 堆棧指針的值是多少?
- 13. Grafana中的$ interval平均值是多少?
- 14. if/unless修飾符的值是多少?
- 15. Bluebird's .spread的Q值是多少?
- 16. 分區中maxvalue的值是多少
- 17. Java中Float的最大值是多少?
- 18. ENUM值的最大長度是多少?
- 19. C++中「this」的可能值是多少?
- 20. `jqXHR.status`的可能值是多少?
- 21. androidboot.mode的值應該是多少?
- 22. css'ex'單元的值是多少?
- 23. $ security的默認值是多少?
- 24. BeautifulSoup.find的回報值是多少?
- 25. HiLo算法的MaxLo值是多少?
- 26. 「line.separator」的實際值是多少?
- 27. Combobox.NewIndex屬性的最大值是多少?
- 28. 等待awaitable_object的值是多少?
- 29. 行ID的最大值是多少?
- 30. cassandra.yaml中allocate_tokens_for_keyspace的允許值是多少?
蘋果提供數碼測色度計從屏幕挑膚色。應用程序 - >其他 - > DigitalColor。 – Astoria 2014-12-04 13:49:24