I'm looking at ways to get information from my MySQL DB using iOS.
The DB and its PHP file work great (I have a working app for android which accesses it)
I wanted to use ASIHTTPRequest, but It gives all kind of problem when using ARC. I tried finding guide on how to create a static library for it, but everything I tried didn't work, I couldn't get it to run, getting about 30 errors regarding ARC (also from sbJSON)
I'm guessing that there are other ways, but googled couldn't help me with this. All I can find was getting info from it. But i need to be able to update it as well
They are probably down voting because of the poor formatting of the question.
It also looks like this is your first time, or atleast new to iOS development, if this is the case avoid using ARC, as it uses a few different property flags. It can be a pain to use with Non-ARC library
ie instead of
retain
it now usesstrong
Also, you should know by now, if you don't show an attempt at the problem people tend not to help
Edit: here are some links to getting Non-Arc Code working in an Arc Enabled Project:
http://www.seriousmonster.com/mixing-arc-and-non-arc-code-with-static-libraries/