I have an iPhone app that gets push notifications from a Windows server as well as other data over HTTP, the data I get over HTTP looks good on the screen, but the push notification shows only questions marks, I tried encoding it as UTF-8, ASCII but still I get the question marks, my iPhone is configured to hebrew and i have a he.lproj file and no en file
does any one has an idea??
Got what was the bug, Im using a push notification server based on Moon-Apns and after checking in source code i found out that they are encoding the needed chars to UTF-8… but they dont use the string they encode to, they pass the original string to the apn, so i fixed it and now all is well, thank you all for trying to help me! if anyone need this fix ill be glad to point to it and give the code