itunes-sdk

Check if iOS app is live in app store

别说谁变了你拦得住时间么 提交于 2019-11-30 04:56:53
Is it possible somehow to code like below in iOS app ? if(app is live in app store) { //Do something } else { //Do other thing } I wanted to avoid cases where our QE/Dev team is using app for testing. Is there a way I can detect how app code is signed (Developer/Adhoc/Distribution) to check ? Even if it is possible, it will not eliminate cases when Apple is using our app for testing as part of review. We recorded many downloads of our content by Apple before our app goes live in App store. You can determine if your app was distributed via the app store by checking for the absence of embedded

Application crashed while importing songs from Ipod library in iPhone for iOs 5.0

一世执手 提交于 2019-11-26 08:19:32
问题 Hello i am using below framworks, #import <MediaPlayer/MediaPlayer.h> #import <AudioToolbox/AudioToolbox.h> #import <AVFoundation/AVFoundation.h> In one of button event i have implemented below code to open Library. MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic]; mediaPicker.delegate = self; mediaPicker.allowsPickingMultipleItems = YES; // this is the default [self presentModalViewController:mediaPicker animated:YES]; [mediaPicker