Are there alternatives to Parse.com 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 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?

Related

A good example of a simple crud Rails app [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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.
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.
Improve this question
I've searched github and just can't find a good example of a simple crud app that meets the following criteria:
Rails 4
simple crud operations type app (a todo list, contact manager, a blog/cms, etc)
responsive design (preferably Bootstrap 3)
AJAX crud operations
a live demo url (preferably on heroku)
clean, simple, and slick
updated repo in the last 6 months
Anyone care to share?
Thanks.
Here is one, it's using angular js as well.
You can find the demo here.
I think the code sample in the book “Agile Web Development with Rails” is great. Just go with it.

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

What's suggested approach to create UI similar to Facebook News Feed? [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
What's better approach to develop UI/UX similar to facebook new feed and attached Image.
I would like to make it as an Native app. If there is any framework available then I'm willing to use that also.
https://parse.com/tutorials/anypic
https://github.com/ParsePlatform/Anypic
This open source code available for this app.
This app similar to Instagram app. This shows social feeds of images shared by user.
They have custom TableViewCell and TableViewHeaders.
Try this. It might help you.

Are there any tutorials for MVVM using Delphi? [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 interested in learning MVVM. Sadly I cannot find examples and/or tutorials on the internet that use Delphi with database applications.
Can you post links or point me in the direction that I should go?
Thank you in advance.
Take a look at this CodeRage session.
This session will look at Model-View-ViewModel, one technique that leverages LiveBindings to not only minimize the effort required to slide different UIs in front of your code, but also increases the maintainability and testability of your app as a bonus.

how to implement XMPP over BOSH for iOS? any known library? [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 know about robbiehanson/XMPPFramework and also know that it doesn't support BOSH so please don't bother to give links to its git page.
I also know about directi/XMPPFramwork which is a fork of robbiehanson's code and also have some implementation of BOSH, however I was not able to get it working, and the project itlself was abandoned by its authors.
I know gloox supports BOSH, however since its a C++ library, I was not able to make it work with my native iOS App which is in objective-c.
Now, does anyone know about any other library for implementing XMPP over BOSH for iOS app? or if anyone can guide me the changes required to implement any of the above three libraries with BOSH support?

Resources