2014-12-04 78 views

回答

5

使用Pixie(可從蘋果公司的開發人員中心的應用程序Downloads For Apple Developers下 - >Graphics Tools For Xcode),以及採樣UITableViewCellselected狀態與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]; 

Original post can be found here.