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.

SwiftでEurekaを使おう

Last updated at Posted at 2020-06-11

swiftで簡単に入力フォームつくれないのー?って調べていたら
Eurekaというライブラリを見つけました。

早速、セットアップしていきます。

ただの技術メモなので、ご了承下さい。

まず、Swiftのライブラリ管理ツールCocoaPodsを導入します。

インストールコマンド
sudo gem install cocoapods

セットアップしていきます
pod setup

Setup completedと表示されれば完了です。

次にEurekaの導入です。

Teminalを起動して作成したプロジェクト先に移動して以下のコマンドを実行し、podファイルを作成します。
pod init

作成したpodファイルを下記のように編集します

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
 
target 'EurekaSample' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  source 'https://github.com/CocoaPods/Specs.git'
  platform :ios, '9.0'
  use_frameworks!
 
  # Pods for EurekaSample
  pod 'Eureka'
end

編集が終わったらいよいよインストール
pod install

これでプロジェクトにEurekaの導入が完了しました。

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?