美文网首页
google protobuf ios开发使用

google protobuf ios开发使用

作者: kakukeme | 来源:发表于2017-02-24 17:43 被阅读100次

参考链接:google protobuf ios开发使用http://www.cnblogs.com/cocoajin/p/6100841.html

$ brew install protobuf

$ protoc --version
libprotoc 3.2.0


protoc --proto_path=./ --objc_out=./ ./Person.proto
// Person.proto
syntax = "proto3";

message Person {
  string name = 1;
  int32 age = 2;
  string address = 3;

}

相关文章

网友评论

      本文标题:google protobuf ios开发使用

      本文链接:https://www.haomeiwen.com/subject/gloiwttx.html