1
vote
Invalid iPhone Application Binary
I had the same issue and solved it this way:
The property certificates were installed on my development machine and mobileprovision.embedded was included in the distribution archive. After …
2
votes
Registering for Apple Push notification - how do I pass the DevToken with HTTP?
I haven't tried it out yet, but my first guess would be to look at Base64 encoding the binary array into a 7-bit clean string that can be passed as a query parameter on your request.
You co …
0
votes
Best way to serialize a NSData into an hexadeximal string
[deviceToken description]
you'll need to remove the spaces.
Personally I base64 encode the deviceToken, but it's a matter of taste.
…
0
votes
iPhone database load
I agree with not loading that much data at once, also I would look at optimizing your db, adding indexes, etc. Are you searching the in-memory version of the data or querying the db? I would do th …
