Google Drive Realtime API for iOS [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to implement realtime collaboration in my iOS app using Google Drive and the new realtime API. I know that I can set up a web view in Objective-C and set up two-way communications between the web view and my native app, and therefore use the javascript library, but my fear is that this would be inefficient for a high volume of data traffic. I was hoping that possibly there would be a native solution coming on the horizon. Any news on whether the Google API client library for Objective-C will be updated to include the Google Drive Realtime API?

I do not know about the Google real time api but for google drive integration this would work. There is a sample app called Dr.Edit here.
Using UIWebView for doing all this stuff is not advised.

Related

How can I get data from a website to ios app [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to create an iOS app that can show the bike stations and their availability(how many bikes are available in each station) from a website and I want to know how can I do it (which request?...)
There are plenty of ways you can do that.
First you should investigate if the BIKE Data Website offers a Web Service that you can utilize ? I suspect not. Then you create your Own Web service (I think it will be ideal to create REST - http/JSON) type service since that is lighter in comparison to the SOAP.
In your Service You will need to do a HTTP Request on the URL where the data is, html will be returned from the page, then look through the html and parse and get the data you need and return values to your app.
I hope this provides a pointer.
Thanks

How to integrate Viber in iOS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
In one of my application I want to integrate Viber. I searched on google for SDK but all my effort went in vain. So I have following question.
QUE:
Is it possible to integrate Viber in my application?
If yes, then provide me link for SDK and doc.
PURPOSE:
In my application I want to implement invite feature. When user tap on "Invite Via Viber" my application will open vibe application. After that end-user will select the contact and in share predefined text that I Passed through my app.
You can not do this. Viber does not provide any SDK or API for this purpose. You may take interest in login via Facebook or Twitter..
Because these social sites are way too popular than Viber.
You may look at these links:
https://developers.facebook.com/docs/ios/
https://dev.twitter.com/docs/ios‎

Are there alternatives to Parse.com for iOS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I currently use parse.com to manage users. They have a great API, decent backend for me to manage stuff. But I'd prefer to host my own data.
The server backend, I could whip that up in php very easily. But I'm struggling to find a decent library/framework on the iOS side of things to replicate what Parse's framework does.
To do things like easy login/logout, having a user 'cached' with a saved file, easy to use methods for using blocks to send data in the background. Any clues as to where to look or what to search for to find a similar open source library that I can integrate with my own systems?

Developing RESTful clients on iOS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am building an app on iOS and on Mac OS X that talks to a server using REST. The app is expected to store data fetched from the server in a local store (preferably in a SQLlite database). I understand using Core Data is a good option, but I am looking for an example of an app architecture that works on the basis of UI Views getting notified when the SQLlite database is updated as a result of a response from the server.
I have seen a talk for Android at Google I/O that addresses this type architecture in detail. Are there any similar talks/articles like this for iOS?
You're mixing quite some different things here.First you need an interface for your restufl API. Look at AFNetworking library to handle requests to the server and build your API handler. Then use an NSFetchResultController to listen to your core data being updated and do what you need accordingly in your views. NSFetchResultController is built to be used with a UITableView but you can use it in other situations if needed.
use RestKit it's the best framework to work with Rest services.
and it's well-documented. the latest version works on top of AFNetworking.
you can find some examples there as well.

How do I obtain the Natal SDK? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
How do I obtain the Natal SDK? Where to take it from (google had not given me lot of help)
There is now a third-party (open-source?) SDK available from Code Laboratories. The NUI SDK is still under development, but you can download it and start using it.
well, I've looked around, and I can't find it (legal or otherwise).
The natal kinect SDK would be great fun to play with... come on microsoft and xbox!
It appears that Microsoft have released the SDK to a limited number of games studios but it is not freely available. You might be able to find a pirate copy on a torrent site if that sort of thing doesn't bother you.

Resources