2017-09

iOS

Swift3.0 view値、storyboardとの関連付け

ステータスバーの高さを取得 let statusBarHeight: CGFloat = UIApplication.sharedApplication().statusBarFrame.height ナビゲーションバーの高さを取得 let...
Tech

Macの設定

Automatically open a new Finder window when a volume is mounted マウントされたディスクがあったら、自動的に新しいウィンドウを開く defaults write com.appl...
Tech

Xcode8でiOS11の実機確認をする

XcodeをApple Developersからダウンロード 「Xcode 9」 をダウンロードし、展開する。    Downloads for Apple Developers Xcode9の下記へFinderで移動する /Downloa...
Android

Android BottomNavigationViewのカスタマイズ

BottomNavigationViewは、アイテムが3つまでは均等サイズのアイテムが並びます。しかしアイテムが4つ以上になると選択中のアイテムだけアイコン下部にテキストが表示されたり、アニメーション、エフェクトが効いて選択中のアイテムだけ...
Swift

Swift3.0 UserDefaultsの使い方メモ

インスタンス生成 let userDefaults = UserDefaults.standard 保存 // 論理値 userDefaults.set(true, forKey: "KEY") // 数値型 userDefaults.se...
Tech

git

初期化 git init リポトジトリ追加 git remote add origin ステージングに追加 git add --all コミット git commit -m "initial commit" リモートへプッシュ git pu...