Skip to content

Instantly share code, notes, and snippets.

@sakmt
sakmt / 180403ui_tips.swift
Last active April 4, 2018 01:36
2018/04/03のサポーターズ勉強会( https://supporterzcolab.com/event/342/ )のDEMOコードです
// - 業務のプロジェクトから抜粋して貼り付けているので見づらい上、実行には足りてないコードもあります:innocent:
// - UI構築にSnapKit、View要素のバインディングやイベントまわりにRxSwiftを利用しています。
// - StoryBoardやXibは使用していません
import UIKit
import CoreLocation
import SnapKit
import RxSwift
//
@sakmt
sakmt / potatotips45.swift
Last active March 6, 2018 09:53
UIStackView demo
// スライドはこちら 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]