标签:ruby gem taobao ios cocoapods
sudo gem install cocoapods如果输入密码后很长时间没有反应,或提示无法找到,可能地址被墙了,那要先输入:
gem sources --remove https://rubygems.org/ //等有反应之后再敲入以下命令 gem sources -a http://ruby.taobao.org/
<p style="margin-top: 0px; margin-bottom: 0px; font-size: 11px; font-family: Monaco; color: rgb(115, 115, 115);">gem sources -l</p>
*** CURRENT SOURCES *** http://ruby.taobao.org/
pod install 命令 ----暂时我还不知道这命令是做什么用的。
pod search QRCodeReaderViewController输出:
-> QRCodeReaderViewController (3.4.0) Simple QRCode reader for iOS 7 and over pod 'QRCodeReaderViewController', '~> 3.4.0' - Homepage: https://github.com/YannickL/QRCodeReaderViewController - Source: https://github.com/yannickl/QRCodeReaderViewController.git - Versions: 3.4.0, 3.3.0, 3.2.3, 3.2.2, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.0.0, 1.0.1, 1.0.0 [master repo]到项目的.xcodeproj目录,建立Podfile文件:
touch Podfile
vim Podfile
<pre name="code" class="plain">source 'https://github.com/CocoaPods/Specs.git' platform :ios, '7.0' pod 'QRCodeReaderViewController', '~> 3.4.0'
pod install
open MyProject.xcworkspace打开项目,不要用.xcodeproj打开项目。
标签:ruby gem taobao ios cocoapods
原文地址:http://blog.csdn.net/xundh/article/details/45965523