由于最近項目需要用到protobuf,于是就研究一下也踩了不少的坑.
1.在mac環(huán)境下不熟安裝環(huán)境
可以查看是否安裝home-brew是否安裝
$brew-v
2.如果沒有輸入以下命令
1.? ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
2. brew install automake
3. brew install libtool
4. brew instal protobuf
5.? git clone https://github.com/alexeyxo/protobuf-objc.git(這里自己可以建個文件夾放在里面)
6.打開你下載的文件 執(zhí)行一下操作? ? ? ./scripts/build.sh
7.protoc --version (查看botobuf是否安裝成功)
如果沒有安裝成功執(zhí)行一下操作
8.ln -s /usr/local/Cellar/protobuf/3.2.0/bin/protoc /usr/local/bin(這里路徑可能不太一樣可以根據(jù)自身情況修改一下)
9. cd ~/Desktop/ProtoBuf
touch test.proto
vim test.proto
輸入一下內(nèi)容
message UserInfo {
required string phone? ? ? ? ? ? ? = 1;
required string name? ? ? ? ? ? = 2;
required int32 age? ? ? ? ? ? ? ? ? = 3;
}
讓后esc->:wq
10.生成oc 文件 打開剛剛創(chuàng)建的? ProtoBuf文件夾? cd ~/Desktop/ProtoBuf
protoc --plugin=/usr/local/bin/protoc-gen-objc test.proto --objc_out="./"
然后下載Protobuf最新版本 利用cocoapods,
pod 'Protobuf', '~> 3.1.0'
cocoapods的使用方法我就不多說了