views:

119

answers:

2

Hi,

I'm looking for some objective-c Curl Library to send a "curl -F ..." command.

I just found complicated ways.. is there an easy class which let me send it easy as direct command?

Greetings

+1  A: 

Sounds like NSTask:

Using the NSTask class, your program can run another program as a subprocess and can monitor that program’s execution. NSTask Class reference

Apple gives an example in Interacting with the Operating System. If you find the learning curve there a bit steep, start with the invaluable Quickies.

Elise van Looij
A: 

I want to send a post!

philipp