Is anyone using DropBox to synch data between iPhone an iPad - iphone

I have a universal app which uses simple pLists for data storage and would like an end user with both an iPhone and iPad have the settings/data synched. I think using DropBox may be the easiest way to do this.
I am wondering if anyone out there has successfully done anything similar to this and might want to share their experience.
Thanks,
John

Use iCloud .... its just perfect for your present problem.

Related

iOS data management

I'm writing a simple iOS App to manage Email address, maybe like Contacts. I don't know what is the best way to organize data in iOS and don't know which database that iOS and Xcode support. I just know that iOS supports XML & SQLite, are there other databases supported?
Which is the best database (XML, SQLite,...) for this app?
If you are going to add only email and contacts then my suggestion is you just use plist.
http://developer.apple.com/technologies/ios/data-management.html
You should try CoreData. Have a look here to see what's it about. It offers a great way to handle the things you said you want to achieve.
CoreData is good option. The persistence used by core data is abstracted away while you can still choose SQLite, XML, or in memory for the persistent store.

How to create an iPhone app that interacts with my website?

What I want to do is to make an iPhone application for my website similar to the photofunia. The users will be able to select an effect from a list, and then upload their own photo. Then the result will be shown in the browser where the user can save the image and/or publish to website like facebook, etc.
What software can I use to do that? Phonegap, appcelerator, etc? Can some of these help?
Thanks.
First of all, you may be able to make an iPhone app using Adobe Flash and the Adobe Packager for iPhone.
The other option is to get a Mac and Learn Objective-C.
There is no "easy" solution here.
Create a webservice for your website and try to use that in your iPhone Application
Of course I know there is no "easy" solution, but I'm almost sure there are other options for making iphone apps, instead of using Objective-C.
I only don't know the name of the tools.
Flash doesn't works. Adobe Air currently doesn't offer a way to access the camera roll on the ios.

Integrating Codeigniter and Objective C

I'm currently building a social networking site using the codeIgniter PHP framework. One of our major focuses of this site is to be able to upload images through the use of smartphones. We were focusing on building for the iPhone, but the iPhone doesn't let you upload files for some reason beyond me. I have been looking through solutions for days seeing if we could somehow integrate an iPhone app and have come up with nothing. The only thing I have found is using Cocoa Xcode in Objective C to somehow get around the fact. Now I don't know anything about objective C and I was wondering if I could somehow integrate a snippet of objective C into my PHP to allow users to upload photos off their iPhone and onto our site.
Is this possible? If so how? If not, does anyone know another work around?
You can avoid having to code an iPhone app by allowing images to be submitted by email. This is one of the ways Posterous works. I'm pretty sure that there's no other way to access the photo library outside of building your own app in Objective-C.
It seems that you would actually have to create an iPhone application doing the job for you. Check this article on how such application would be done in Objective C on the iPhone.
As an alternative, you could try third party tools like e.g. Image Upload
If I have understood ur problem, u are finding a way in what manner u should send the image with ur request to ur php.
If this is ur problem, the I suggest u to first convert the image into Base64Encoded data and send it with ur request. Now php do have inbuilt methods to convert this data to an image.
Try looking for Base64Encoding help for php.
Thanks,
Madhup
This is the very reason why social platforms have their Apps on the App Store and not just simply the Wap Sites. So either you can have email attachments, or write an app which uploads the images, and a controller which manages those uploads.

Add media from iphone (outside of iPod library) into iTunes

Is there a way for my iPhone app to add media (mp3s) not in its iPod library to iTunes once the user plugs/syncs to a desktop such that the media will get sync'd back into the iPhone's iPod library?
I know the question is rather general, but if it is indeed possible, can anyone nudge me in the right direction?
Who wants to write a sync app for mac and windows? Try serving a bonjour discoverable upload page from the iPhone. I got cocoahttpserver up and running in a few minutes.
No, it's not possible to do this using anything provided by the iPhone SDK. The only way to do something similar would be to store the media in your iPhone application's local storage, write an OS X application that discovered your iPhone via Bonjour, synced the content via WIFI, and then added it to iTunes.
Take a look at "Things" (an iPhone todo list application) if you'd like to see an example with sync-to-desktop functionality.
there is a way, i've done it through an app and it wasn't complicated. sadly I forgot and am currently looking for where I found the answer and thats how I stumbled upon this.

iPhone app that access the Core Location framework over web

I was wondering if I could access the iPhones Core Location framework over a website?
My goal is to build a webapp/website that the iPhone would browse to, then upload its current GPS location. This would be a simple site primary for friends/family so we could locate each other. I can have them manually enter lng/lat but its not the easiest thing to find. If the iPhone could display or upload this automatically it would be great.
I don't own a Mac yet (waiting for the new Mac Book Pro) but would like something a little more automatic right now. Once I have the mac I could download the SDK and build a better version later. For now a webapp version would be great if possible. Thanks.
Why not simply use W3C GeoLocation API available in mobile Safari? This will work on ipod touch as well (suburb precision).
It's literally 10 lines of code and the javascript will work without change on Firefox 3.5. Far easier than scrape some third party website.
http://www.instamapper.com/iphone
iPhone App store
While this may not directly answer your question, there are quite a few iPhone apps that already do this kind of thing with GPS. Instamapper is the first one I pulled up from the app store, but I'm sure you could find something to fit your needs.
I'm pretty sure you can't do what you want directly.
The best idea I can come up with is to "reuse" an iPhone app that records location and makes it accessible on the web. Take Twitter for example. If I'm not mistaken, Tapulous' app Twinkle will grab your location and post it to your Twitter.com user profile. Here's an example of what that looks like:
From your webapp, you could then scrape the user page for each person whose location you're interested in. It's a pain in the butt, but like I said, this is the best I could come up with.
Again, if you don't want to mess with Twitter, there may be other apps out there that do this as well, but I don't personally know of any. Good luck.
We built a really thin iphone client app that simply calls a predefined .js file on our site. Works like a charm.
See arisgames.org for the project.