tags:

views:

40

answers:

2

MIME type OTA(Over the AIR) for iphone....

I have created simple application in iphone 3.0. I want to upload my exe(file) in local webservice. Now i want to download this from that site and install in iphone ....

How can i did this ?

Is it possible ?

Can anyone help me?

Thanks in advance..............

+1  A: 

First, NO iPhone will run an EXE file.

Second, NO iphone will allow an "install" like a computer would. You can bring files into your app, and your app can do what it likes with them, but you will not be able to install an entire app this way.

Third, to answer your question, you can use

+[NSData dataWithContentsOfURL:]

to get the file from your server into the phone, then use this data to write to file, or do whatever you will.

coneybeare
A: 

You use Xcode to install your app. Not a webservice. Why are you uploading and downloading?

Brings me back to the question I asked you in your last (duplicate) post.

mahboudz