「Ios/swift/外部ライブラリ/Alamofire」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==Alamofireとは== httpに非同期でアクセスできるライブラリ ==インストール== $ vi Podfile platform :ios, '9.0' use_frameworks! pod 'Alamofire',...」) |
|||
行5: | 行5: | ||
$ vi Podfile | $ vi Podfile | ||
platform :ios, '9.0' | platform :ios, '9.0' | ||
− | use_frameworks! | + | target 'Helloworld' do |
− | + | use_frameworks! | |
+ | pod 'Alamofire', '~> 3.0' | ||
+ | end |
2016年6月23日 (木) 11:47時点における版
Alamofireとは
httpに非同期でアクセスできるライブラリ
インストール
$ vi Podfile platform :ios, '9.0' target 'Helloworld' do use_frameworks! pod 'Alamofire', '~> 3.0' end