无声音频 空白音频 ios后台运行保活

1为了实现后台定时器继续循环  用到了 https://blog.csdn.net/qq_38520096/article/details/102626210 用播放音频的方法 播放无声音频实现

2功能实现了但是没找到无声音频 在这里直接提供无声音频链接

https://pan.baidu.com/s/1C4ug1IHdlsStIb6MGMicSg   提取码full

3 第一个实现了后台运行保活 但是会出现一些问题   蓝牙连接的时候 会停止播放正在播放的音乐

4找到新的代替方法  还是用的无声播放

5使用方法 导入网盘文件   

-(void)viewDidLoad{

    [super viewDidLoad];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillEnterForeground) name:UIApplicationWillEnterForegroundNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appDidEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];

}

 

- (void)appWillEnterForeground {

 

    [[BackgroundTaskTool shareTool] stopBackgroundTask];

}

 

- (void)appDidEnterBackground {

 

    [[BackgroundTaskTool shareTool] startBackgroundTask];

    

}

 

 

posted @   代佳宏  阅读(633)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示