ios - If I use Apple Push Notification service for instant messaging will apple block my account? -
i want create ios chatting app using apns. if have 10,000 active , continuing chatting, apple block developer account ? there limitation regarding this?
i discourage using apns backbone of "chatting app".
if need fast chatting functionality should write own tcp-socket based server.
if every-few-second syncing o.k. can away http-based server backend (but pull-syncing can hard on network traffic - tcp-socket still better choice).
you use apns fallback - when app on device not responding (i.e. not connected server) can send initial message trough apns (to wake app & notify user there message waiting him).
as user opens app should switch tcp-socket or http request based server communication.
as question: no, apple (one can never know sure) not reject app because of using apns chatting. note (as others said allready): messages between 2 users "lost" if interact - see link roman barzyczak gave you.
Comments
Post a Comment