facebook twitter hatena line email

「Ios/swift/色」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(定型色)
行18: 行18:
 
  whiteColor 白
 
  whiteColor 白
 
  yellowColor 黄
 
  yellowColor 黄
 +
 +
参考:http://iphone-tora.sakura.ne.jp/uicolor.html
  
 
==色カスタム==
 
==色カスタム==

2016年7月1日 (金) 13:42時点における版

ViewControllerの色変更

self.view.backgroundColor = UIColor.blueColor()

定型色

blackColor 	黒 	
blueColor 	青 	
brownColor 	茶 	
clearColor 	透明 	
cyanColor 	シアン 	
darkGrayColor 	濃い灰 	
grayColor 	灰 	
greenColor 	緑 	
lightGrayColor 	薄い灰 	
magentaColor 	マゼンダ 	
orangeColor 	オレンジ 	
purpleColor 	パープル 	
redColor 	赤 	
whiteColor 	白 	
yellowColor 	黄

参考:http://iphone-tora.sakura.ne.jp/uicolor.html

色カスタム

UIColor(red: 0/255, green: 116/255, blue: 232/255, alpha: 1.0)

カラーピッカー:https://www.ralfebert.de/snippets/ios/swift-uicolor-picker/