itunes

How to retrieve iTunes preferences programmatically to find audio libraries?

自闭症网瘾萝莉.ら 提交于 2019-12-20 15:27:33
问题 I'm creating an application on the Mac in Cocoa that plays audio. I think the best place for my application to search for audio files on a user's computer is to get the directory path(s) from iTunes. How would I retrieve the directory paths(s) from iTunes? Would this be in some sort of preference setting? Thanks. 回答1: Just for those who will encounter this problem in the future, I've documented the approach that I used below. I decided not to use the Karelia framework because I don't need all

Sync image from iTunes to the iPhone simulator

偶尔善良 提交于 2019-12-20 10:46:07
问题 I want to know how to sync images from iTunes to the iPhone simulator. 回答1: This worked for me with iOS4: at the simulator, click home, then click the Photos icon. Drag the image from your Mac onto the simulator screen. Then follow the instructions above: hold down the mouse click on the image until the popover comes up. Choose Save image. Verify by clicking back to Photos (on the simulator) and inspecting (the new) album "Saved Photos." 回答2: I spent a while looking into this, and my

Demonstration video for the appstore? [closed]

ぃ、小莉子 提交于 2019-12-20 10:26:53
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 months ago . I uploaded my app to itunes connect and i waited a few days.. and then the app that i uploaded was denied. 1 of the reason was that i didnt had a demonstration video with my app in use? Furthermore, we began the review of your app but are not able to continue because we need access to a video that demonstrates

Rate my Application in iTunes within my Application in iPhone

十年热恋 提交于 2019-12-20 09:59:46
问题 I have to provide a link in my app where the user touches on it it will take me to the itunes Appstore page of my application where the user can rate the Application. I think other apps try to access the Appstore Application in the device and pass the corresponding url of the application in itunes... How to do this? Any ideas... 回答1: Here's my method; this goes straight to the App Store and to the Review/Rate page for my app: - (IBAction)rateGame { [[UIApplication sharedApplication] openURL:

iTunes Music Store Link Maker — how to search from within my app?

China☆狼群 提交于 2019-12-20 09:07:35
问题 I'm writing a music reference app and for each album (pulled from last.fm) would like to link to the ITMS (if the album is in the store). iTunes link maker web tool http://apple.com/itunes/linkmaker/ is great for getting links for a known album but I need to access it programatically from within my app. This NSLog blogpost which is from 2003 but was referenced more recently in another question here seems to offer the only solution I've come across so far, suggesting to submit a query to:

Insert “Download on iTunes” button in app

左心房为你撑大大i 提交于 2019-12-20 04:19:09
问题 My app shows the title of a certain song and I would like to insert a "Download on iTunes" button that open iTunes on my iPhone pointing to my song. I've retrieved the correct iTunes url, using the iTunes Link Maker but I've two questions for you. In which way can I add this button to my UIView? Do I have to insert a standard button? Which method do I have to call? Is it possible to dynamically compose the iTunes url? I've tried to implement the following method: - (void) openItunes {

Genre of application in iTunes

可紊 提交于 2019-12-19 05:15:02
问题 I am installing my own app in iTunes, and found it to be unknown genre. Since my app is an News based Genre, i need to make is shown as a news genre instead of unknown Genre. But my app is not yet launched in App store. whether this is the cause or anything else? please suggest Any help would be appreciated. -Sathiya EDIT: Thanks for the information. But to be more clear about the question is If you download any app from iTunes means it will based on News, Entertainment, Games, Music Genres.

Missing Localized Screenshots Error on itunes

你。 提交于 2019-12-18 13:54:20
问题 I have selected Default Language as "Australian English" as Default language. When I am submitting the binary it showing as rejected"Red Icon" with status "Missing Localized Screenshots". The application is in only single language. I have added screen shots also the application is only for iphone. When I am looking binary information that is showing as: Localizations : ( "en-AU" ) Please suggest me where I am making mistake. 回答1: Check if you have screenshots for iPhone 5. I had this same

(iOS) Is there a way for an app to open the iTunes music player app (preferably going straight to the Now Playing screen)?

[亡魂溺海] 提交于 2019-12-18 12:44:36
问题 I would like to be able to launch the iTunes app from my app when I tap a button (note that I mean the actual music player, NOT the iTunes Store or App Store). Preferably I'd like it to go straight to the Now Playing screen. Is there any way to accomplish this? 回答1: Yes, it is possible to open the iTunes music player to the "now playing" screen using the music:// URL scheme. Found this out rather incidentally while reading this post on how to quickly launch apps using Siri. Also, here are a

Get notification using NSDistributedNotificationCenter for iTunes on song info change

前提是你 提交于 2019-12-18 12:09:23
问题 I know you can use [iTunesDNC addObserver:self selector:@selector(updateInfo:) name:@"com.apple.iTunes.playerInfo" object:nil]; to get a notification every time the player changes song/stops/plays/etc. But what I need is a notification every time information is changed on iTunes (ex. song title changed, lyrics changed, artist, etc) Any suggestions? Im pretty sure I just need to change com.apple.iTunes.playerInfo to something else that is not playerInfo . I know it should be posible, because