1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

🩰yawacom - 🐥iOSアプリの準備

Last updated at Posted at 2021-01-26

準備

XcodeでAppを新規作成し,必要そうなライブラリをPodsで導入します.
▽参考文献
【Swift】CocoaPods導入手順
とりあえず使いそうな'RxSwift'と'RxCocoa'を導入しておきます.

Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'yawacom' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for yawacom
  pod 'RxSwift'
  pod 'RxCocoa'

  target 'yawacomTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'yawacomUITests' do
    # Pods for testing
  end

end

Pod installation complete!と表示されたらyawacom.xcworkspaceのほうを立ち上げて作業していきます.(Podsを使う際はhoge.xcodeprojのではなくhoge.xcworkspaceを使うので注意!)

次にPROJECTのGeneralでiOSのターゲットを決めたり,Singing&CapabilitiesのTeamに自分のdevelopment team(Appleのアカウント)を選択します.
スクリーンショット 2021-01-26 21.32.20.png
スクリーンショット 2021-01-26 21.34.13.png

アプリデザイン

Figmaでモックアップをささっと作ってみました(デザインはのちのちブラッシュアップ予定です).
スクリーンショット 2021-01-26 16.13.42(2).png
▽Figmaの簡単な使い方はここにまとめました
Figma使い方

開発フロー

miroを使ってどんな流れになるのかをまとめてみました.以降これに沿って作っていきます.
スクリーンショット 2021-01-26 16.12.00.png

next記事

🩰yawacom - 🐥Storyboardを使わず画面遷移を行う

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?