Tagged Questions
0
votes
0answers
27 views
variable named TYPE_BOOL(c++ code) is conflicted with ios macro
I'm trying to build protobuf c++ into ios.
But its implementation contains a TYPE_BOOL enum variable that conflicts with TYPE_BOOL in ios macro. And compile failed.
How to solve this?
2
votes
1answer
87 views
Using Protocol buffers in PhoneGap - iOS
I have used the c++ google protobuf classes in iOS using the native app approach, i.e. using Xcode, objective c, cocoa etc.
Now, I want to migrate to hybrid apps and I have explored the options on ...
1
vote
1answer
132 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.
...
1
vote
1answer
133 views
Adding C++ Google Protocol Buffers to iOS app is failing to load headers from Header Search Path
I am following this post: Google protocol buffers on iOS
I copied the Google Folder and Config.h into my project.
I have finished everything, but the problem I am having is to do with this step: ...
1
vote
1answer
122 views
Sending C++ Protocol Buffer Messages from iOS
In a previous Stack Overflow question, people were super helpful in showing me the error of my ways while building my Akka socket server and I actually now have an Akka socket client that can send ...
1
vote
0answers
278 views
ProtocolBuffer inside Unity3D targeting iOS
I'm trying to use Marc Gravell's protobuf-net C# protocol buffer implementation, in a Unity3D project targeting iOS devices.
I managed to create a C# file (let's call it MyFile.cs) from a protocol ...
0
votes
0answers
169 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
355 views
Reachability and International Roaming
I am using the Reachability class from Apple to determine whether or not data or wifi is available. However, a user (with a U.S. iPhone) is testing the app in another country and he is seeing the ...
0
votes
0answers
44 views
How to get Data from GPB message and store in NSData in IOS?
I am implementing simple application to Use google's GPB. So I want to create simple message named student.proto (which has some info about student like name,DOB,contact, etc ) followed the link then ...
0
votes
1answer
308 views
The best protocol for communication, data transfer for iOS, Android client and server [closed]
I explored many days, the available communications are: http, simple socket, RPC. The data transfer protocol are json, protocol buffer. My server language is Ruby.
i want use RPC + protocol buffer, i ...
4
votes
2answers
2k views
Google protocol buffers on iOS
Is the metasyntactic static library for iOS . . .
http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers
. . . compatible with regular old C++ compiled protofiles? I do not want to use the ...
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
582 views
#import <string> in ios? Protobuf c++ in ios
I am trying to get protobuf into xcode 4 and work with ios 5. I've done other tutorials none have worked. I have used a script to compile the libraries into arm 7 architecture and then added them to ...
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 ...
2
votes
2answers
984 views
iOS 5 , Xcode 4.2 and ProtoBuf
I'm trying to compile google protobuf protocol for using it in my iOS 5 project, but with no success yet... I found only one blog post about the topic here. But when I try this method I receive error: ...
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?