-1

I have created an app in objective C, In this app i have one page there User can comment live and for the updating comments i am hitting every 5 min the web-service. I have no idea about the server data change .

I want to hit the service while the data has been change to the server. Is it possible . Or we can use some other way for the web services.

Thanks, Please answer if you have an correct way to solve it.

Abhishek Mishra
  • 1,625
  • 16
  • 32

1 Answers1

1

Go to this web site PubNub, download SDK's for both Server and Objective-C. PubNub is a common Stream Service with Subscribe/Publish services. After implementing SDK's, make your Client as Subscriber, and make your Server as Publisher. Simply; Subscribers are listening channels for data. When you have a new comment, Publish that comment from Server to channel which your client has already subscribed. Do not forget, free accounts are for demo purposes and have limitations.

Serkan Hekimoglu
  • 4,234
  • 5
  • 40
  • 64