Hello,
I'm new to iphone development and Sorry if my question sounds stupid. Just wondering is it possible that I can buy songs from the itunes using my iphone application I just saw some apps doing the same.
Any help will b greatly appreciated.
Hello,
I'm new to iphone development and Sorry if my question sounds stupid. Just wondering is it possible that I can buy songs from the itunes using my iphone application I just saw some apps doing the same.
Any help will b greatly appreciated.
Well, this question is not relevant for this site, anyways...
Visit the website of Apple or iTunes and read the FAQ maybe you can find anything that can answer your question.
You can redirect to iTunes store. Use http://itunes.apple.com/linkmaker to make the links.
gives you a link like this: http://itunes.apple.com/no/album/on-and-on-chameleon/id369004228?i=369004237&uo=4
Then you can use this to open iTunes app:
NSString *buyString=@"http://itunes.apple.com/no/album/on-and-on-chameleon/id369004228?i=369004237&uo=4"
NSURL *url = [[NSURL alloc] initWithString:[buyString stringByAddingPercentEscapesUsingEncoding:NSASCIIS tringEncoding]];
[application openURL:url];
[url release];