0

私は新しい iOS 開発者です。現在再生中のバー (ホーム画面の下部バー) の再生/一時停止ボタンを、アプリの再生/一時停止ボタンをシミュレートしようとしています。助けてください。

[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback
                                       error:nil];
[[AVAudioSession sharedInstance] setActive:YES
                                     error:nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self.player play];

UIBackgroundTaskIdentifier newTaskId = UIBackgroundTaskInvalid;
if([player play]){
    newTaskId = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:NULL];

    bgTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^(void) {
        [[UIApplication sharedApplication] endBackgroundTask: bgTask];
        bgTask = UIBackgroundTaskInvalid;
    }];

    //Your bg code here

    [[UIApplication sharedApplication] endBackgroundTask: bgTask];
    bgTask = UIBackgroundTaskInvalid;
4

1 に答える 1