You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in chapter 2, we should set Session Category in '- (void)applicationWillResignActive:(UIApplication *)application',not '- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions' .
like this :
in chapter 2, we should set Session Category in '- (void)applicationWillResignActive:(UIApplication *)application',not '- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions' .
like this :
AVAudioSession *session=[AVAudioSession sharedInstance];
[session setActive:YES error:nil];
[session setCategory:AVAudioSessionCategoryPlayback error:nil];
}
The text was updated successfully, but these errors were encountered: