tags:

views:

415

answers:

2

I need to write an iPhone app that allows the user to download and use files (more specifiably, video files) that are on the Mobile Me iDisk. Is this possible? I was not able to find an iDisk API for Objective-C.

+1  A: 

iDisk supports WebDAV, which is a file access and versioning protocol based on HTTP. WebDAV is the basis for the iDisk integration with Windows - http://support.apple.com/kb/HT3264.

dmercredi
+2  A: 

You could look into compiling neon as a static library for the iPhone. That would give you the means to access WebDAV resources.

Alex Reynolds