ios – 从Apple Watch扬声器播放声音

前端之家收集整理的这篇文章主要介绍了ios – 从Apple Watch扬声器播放声音前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从苹果手表的扬声器播放声音?我一直无法在线找到任何文件.

解决方法

现在可以通过使用WKAudioFilePlayer或WKInterfaceMovie的watchOS 2来实现.
NSURL *assetURL = [[NSBundle mainBundle] URLForResource:@"file" withExtension:@"wav"];

WKAudioFilePlayer示例:

WKAudioFileAsset *asset = [WKAudioFileAsset assetWithURL:assetURL];
WKAudioFilePlayerItem *playerItem = [WKAudioFilePlayerItem playerItemWithAsset:asset];
WKAudioFilePlayer *audioFilePlayer = [WKAudioFilePlayer playerWithPlayerItem:playerItem];
[audioFilePlayer play];

WKInterfaceMovie示例:

[self presentMediaPlayerControllerWithURL:assetURL options:nil completion:nil];
原文链接:https://www.f2er.com/iOS/336181.html

猜你在找的iOS相关文章