facebook twitter hatena line email

Ios/swift/外部ライブラリ/Alamofire

提供: 初心者エンジニアの簡易メモ
2016年6月23日 (木) 11:48時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

Alamofireとは

httpに非同期でアクセスできるライブラリ

インストール

$ vi Podfile
platform :ios, '9.0'
target 'Helloworld' do
 use_frameworks!
 pod 'Alamofire', '~> 3.0'
end
$ pod install

使い方

import Alamofire