iPhoneアプリ開発

【Swift3】UIButtonのフォントカラー変更

UIButtonのフォントカラーの変更方法もSwift2からSwift3で微妙に変更されている。

 

 

以下にSwift2とSwift3を並べてみた。

button.setTitleColor(UIColor.whiteColor(), forState: .Normal)

 

button.setTitleColor(UIColor.white, for:UIControlState())

 

ただ、Swift3の記述法が分からなくても、Swift2のコードにxcodeの保管を数回実行するとSwift3にたどり着くことができる。