如果你可以使用EZAudioPlotGL
类而不是改变它EZAudioPlot
类它对我有用。选择EZAudioPlotGL
视图只更改视图的类名转到身份检查器并更改它EZAudioPlot
。在那之后
@property (nonatomic,weak) IBOutlet EZAudioPlotGL *audioPlot;
更改
@property (nonatomic,weak) IBOutlet EZAudioPlot *audioPlot;
在 AppDelegate.m 文件更改也
- (void)applicationDidEnterBackground:(UIApplication *)application
{
__block UIBackgroundTaskIdentifier task=0;
task=[application beginBackgroundTaskWithExpirationHandler:^{
NSLog(@"Expiration handler called %f",[application backgroundTimeRemaining]);
[application endBackgroundTask:task];
task=UIBackgroundTaskInvalid;
}];
}