This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
Implementation of myspace and linkedin in iphone
I am new to iPhone technology
I am using API in JSON. I need to integrate myspace into my app
How can it be done?
Try this: http://code.google.com/p/myspaceid-iphone-sdk/
Related
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Yahoo API Integration?
I want to integrate yahoo in my iphone application,how can i integrate yahoo in iphone application and access my account and sending and receiving messages from my friend.how can acheive this.can any one answer my questio
yahoo has an API for iOS , the sample project can help you.
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to access SOAP services from iPhone
I want to call webservice for xcode.
I have wsdl.
What do I do?
try this and view the tutorial.. very easy..
http://sudzc.com/
This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
How do I upload a video to YouTube from within an iOS application?
Is there any way to implement functionality to upload video in youtube in iPhone? If so, how? Thanks in advance.
use the Youtube API and check the GDATA Objective-C Client here, also see this SO answer.
This question already has answers here:
Proper way to exit iPhone application?
(24 answers)
Closed 8 years ago.
How do I programmatically minimize an iPad/iPhone UIApplication?
Actually there no such method for minimize iPhone app.
You can try with "exit(0)" to close the app.
Cheers.
You can't. You can only switch to another app. I don't think apple has a public API for doing this.
This question already has answers here:
Objective-C: Best way to access REST API on your iphone
(5 answers)
Closed 9 years ago.
I want to create an iphone application that is able to post the data to a website database which is using MySQL. Can anyone give some hints?
You'll need to use NSURLConnection and NSURLRequest to send the data to the server.