29
iOS Swiftアプリの背景ビューにグラデーションを適用する方法
ビュー(ストーリーボードのメインビュー)の背景色としてグラデーションを適用しようとしています。コードは実行されますが、何も変更されません。私はxCode Beta 2とSwiftを使用しています。 これがコードです: class Colors { let colorTop = UIColor(red: 192.0/255.0, green: 38.0/255.0, blue: 42.0/255.0, alpha: 1.0) let colorBottom = UIColor(red: 35.0/255.0, green: 2.0/255.0, blue: 2.0/255.0, alpha: 1.0) let gl: CAGradientLayer init() { gl = CAGradientLayer() gl.colors = [ colorTop, colorBottom] gl.locations = [ 0.0, 1.0] } } 次に、ビューコントローラで: …
186
ios
ios7
swift
cagradientlayer