げっとシステムログ

WEB開発メモ

ios アプリ

UILabel の色の変え方

textColor を設定する let cornflowerBlueColor = UIColor(red: 85.0 / 255.0, green: 169.0 / 255.0, blue: 212.0 / 255.0, alpha: 1.0) let darkPeachColor = UIColor(red: 233.0 / 255.0, green: 144.0 / 255.0, blue: 109.0 / 255.0, alpha: 1.0) if is_…

CollectionView の使い方

とりあえずものを表示させてみる セルの設定を行う 描画のためのコード NSObject, UICollectionViewDataSource, UICollectionViewDelegate セルの設定 セルに identifier を設定する カスタムクラスがあるならそれの設定も (サンプルには載っていないけど、…

TableView の使い方

とりあえずものを表示させてみる セルの設定を行う identifier の設定 セルのクラスの設定 描画のためのコード NSObject, UITableViewDataSource セルの設定 セルに identifier を設定する カスタムクラスがあるならそれの設定も (サンプルには載っていない…