This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// - 業務のプロジェクトから抜粋して貼り付けているので見づらい上、実行には足りてないコードもあります:innocent: | |
// - UI構築にSnapKit、View要素のバインディングやイベントまわりにRxSwiftを利用しています。 | |
// - StoryBoardやXibは使用していません | |
import UIKit | |
import CoreLocation | |
import SnapKit | |
import RxSwift | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// スライドはこちら https://www.slideshare.net/kirimotch/uistackviewui-82938602 | |
// MARK: - ViewController.swift | |
import UIKit | |
import SnapKit | |
class ViewController: UIViewController | |
{ | |
private let colors: [UIColor] = [.red, .blue, .green, .yellow, .orange, .cyan, .magenta] | |