tags:

views:

12

answers:

1

How does one add additional targets to an iphone application?

I would like to add the following targets: CFNetwork.framework, SystemConfiguration.framework and libz.1.2.3.dylib to my app to be able to use twit pic

Thanks

+1  A: 

You mean adding these frameworks to your xCode project ?

Just do a right clic on the Frameworks folder, "Add", "Add an existing Framework". :-)

And don't forget to #import the frameworks in the file which need them !

Vinzius