ikeh1024のブログ

ZennやQiitaに書くにはちょっと小粒なネタをこちらに書いています

iOS

SwiftでColorSpaceを扱うときのメモ

まとめ macOS/iOSアプリを作るときはDisplay P3を採用すれば良さそう。 より色の表現幅が大きいため。 参考 Color.RGBColorSpace iOS 10 から導入された拡張sRGB色空間 (Extended sRGB Color Space) とは RGB値だけでは色は1つに定まらない NSColor の Compo…

UICollectionViewを触ってみる

UICollectionView Tutorial: Getting Started OverView この記事では基本的な実装のみ GitHub https://github.com/pommdau/raywenderlich_com_UICollectionView-Tutorial_Getting-Started Supplement a collection view is a UIScrollView subclass. APIキー…

iOS Apprentice Section3 My Locationsに関するメモ

iOS_Apprentice Chapter21 Collections Properties iOS_Apprentice Chapter22 Make project CoreLocation @IBAction func getLocation() locationManager(_ manager: CLLocationManager, didFailWithError error: Error) locationManager(_ manager: CLLocat…

iOS_Apprentice_Section2_Checklistsの解説(完成形)

概要 GitHub データモデル Checklist.swift countUncheckedItems() -> Int ChecklistItem.swift クラス設定 Property init() deinit toggleChecked() scheduleNotification() removeNotification() DataModel.swift Property init() registerDefaults() hand…

iOS_Apprentice_Section2_Checklistsの解説(Chapter19まで)

概要 GitHub データモデル ChecklistItem.swift Checklist.swift countUncheckedItems() -> Int DataModel.swift sortChecklists() AppDelegate ViewControllers AllListViewController.swift クラスの設定 Property viewDidLoad() viewWillAppear(_ animate…

iOS_Apprentice_Section2_Checklistsの解説(Chapter18まで)

概要 GitHub データモデル ChecklistItem.swift Checklist.swift DataModel.swift AppDelegate ViewControllers AllListViewController.swift クラスの設定 Property viewDidLoad() viewWillAppear(_ animated: Bool) Segueの設定(Storyboard) prepare(for…