0
votes
0answers
21 views

decorate objective classes with protobuf

like in .net version we can decorate classes with [ProtoContract] and [ProtoMember] and there is no .proto file to complies and use the outputs in the project is this possible in objective c version ...
0
votes
0answers
26 views

how to use protocolbuffers from static lib

i have followed this : http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers i was able to compile the Person.proto file got the .h and .m files added to to my static lib project (libIOS) ...
0
votes
0answers
28 views

Writing to a Protobuf CodedOutputStream

I'm having issues writing to a CodedOutput Stream using the Objective-C port of Protobuf: POPMessage_Builder* builder = [[POPMessage_Builder alloc] init]; [builder setPayload:@"Hello, ...
1
vote
1answer
134 views

“repeated” type fields not compiling in Google Protocol Buffer Objective C

I'm using an ARC enabled objective c version of protocol buffer and I have integrated it with XCode 4.5. I compiled a simple proto file, serialized and deserialized it to check if its working fine. ...
5
votes
1answer
224 views

Is there a way to wrap protocol buffers into Objective-C and still take advantage of inheritance?

I want to use Protocol Buffers in an iOS project. I'm trying to avoid making the whole project into an Objective-C++ fiasco, so I want to wrap the C++ protobuf classes into Objective-C ones. I have ...
0
votes
0answers
171 views

Protobuf and xcode 4.5.1 [closed]

I want use protobuf on my iOS project I follow this link for add: http://www.kelvinkaodev.com/blog/2010/09/linking-the-protocol-buffer-static-library-into-the-xcode-project/ When i finish I have this ...
1
vote
1answer
269 views

How to integrate Google Protocol Buffer to an xCode project?

I'm currently trying to integrate this third-party Objective-C version of Google Protocol Buffer into my xCode project so I can compile it: Objective-C implementation of Google Protocol Buffer Now ...
0
votes
2answers
175 views

Protocol Buffer: From Java to Objective-C using byte[]

I am currently using google's protocol buffers. It works painlessly between Java and C#, however I am running into problems trying to achieve the same use with Obj-c. The Java WS returns a byte[]. ...
2
votes
1answer
223 views

Protobuf vs binary plists for network trafficking in a iOS game

I'm developing experimental multiplayer roguelike for iOS. Players will be connected via GameKit API and they'll be put in one dungeon. There is various actions that players can perform, so I want to ...
2
votes
1answer
1k views

How to install protocol buffers with Objective C/iOS 5 SDK?

Does anyone know how to get protocol buffers working with the most recent version of the iOS SDK? I tried the instructions given here: http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers I ...
1
vote
0answers
331 views

Problems with protobuf compiled files in Objective-C

I'm using Protocol Buffers for Objective-C. I compile the proto files with no problems. But when I add the file.pb.h and file.pb.m to my project they have some setters returning values, which is not ...
1
vote
2answers
1k views

Protobuf vs JSON - Objective-C/iOS

In Objective-C, making iOS apps, what is the best way to go regarding serialization? Protobuf or JSON?
2
votes
1answer
4k views

Google Protocol Buffers on iOS/Objective-C

I need help to configure/use protobuf in Objective-C for a iOS app. I've tried all but I keep getting errors on xcode. Did anyone manage to make protobuf work well in Objective-C/iOS?
0
votes
1answer
623 views

Undefined symbols for architecture i386 using protobuf

I'm trying to make an app that uses Protocol Buffers. I'm getting this error, any idea why? Ld ...
2
votes
1answer
268 views

Protobuffers in Objective C - unable to reference ProtocolBuffers.h

I'm using xcode 4.2 to do an app for iPhone and I need to use protobuf serialization. How should I do it? I've tried this implementation but I can't figure out how to make a reference to ...
1
vote
1answer
351 views

Protocol Buffer for Objective-C

I'm using this library: PB for ObjC http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers. The problem is I can't find an API to modify a PB object like setting a field of an object. It seems ...
1
vote
1answer
478 views

cocoaasyncsocket sending data >128bytes (google protocol buffers)

I'm using cocoaasyncsocket to send data Google Protocol Buffers (using http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers) to a Java server. This is all fine BUT for messages (protoToSend) ...
0
votes
2answers
3k views

How do I get google protocol buffer messages over a socket connection without disconnecting the client?

I'm attempting to send a .proto message from an iPhone application to a Java server via a socket connection. However so far I'm running into an issue when it comes to the server receiving the data; it ...
1
vote
1answer
829 views

protobuf-net - backticks, Dictionaries & .proto files

I'm trying to talk to a C# program that uses protobuf-net from an iphone using http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers Unfortunately the .proto file I've been given (generated ...
12
votes
6answers
6k views

Using Protocol Buffers with Objective-C

Has anyone used Google's Protocol Buffers when developing applications in Objective-C? Are there any current projects for compiling .proto files into Objective-C, all the Google docs simply refer to ...