関連記事

no image

AppDeveloperの有償版

AppDeveloperは無料版でも使えるが、一部機能やApppleStoreへの公開は有償版に登録しなくてはいけない。 普段使っているAppleIDではなく、新しく開発用に作成することが推奨されてい …

no image

タップでsearchBarのキーボードを閉じる方法

navigationControllerを使っている場合、 override func touchesBegan(_ touches: Set, with event: UIEvent?) { vie …

no image

if let の書き方について

もし、エラーがnilでないならば処理をする。 if error != nil { let error = error } ↓if let を使って1行で書き換えられる。 もし、エラーがnilでないなら …

no image

GoogleService-Info.plistでエラーが出た時の対処法

エラ〜:reason: ‘[FIRApp configure]; (FirebaseApp.configure() in Swift) could not find a valid Goo …

no image

xcodeでファイル名の変更をする

xcodeでファイル名の変更をする簡単な方法↓ 参考:Xcodeでファイルの名前を変更またはリファクタリングする