2017-09-01から1日間の記事一覧

SwiftでのSingletonについて

前の記事でAndroidのContextについて書きましたが、今回はiPhoneのSwiftでのSingletonについてです。 昔だとSingletonを実装しようとすると class Singleton_Class: NSObject { class var sharedInstance: Singleton_Class { struct Static { static let ins…

AndroidでのContextの扱いについて

基本的にAndroidで開発して行く上でContextが必ずといっていいほどつきまとう。Application#getApplicationContextで取得できるContextを簡単かつ安全に使えたらってことで今日の話 ネストが深いところでContextが必要になってくると、それ以前の引数にConte…