“NSInvalidArgumentException”,原因:“-[AVPlayerItem 持续时间]:发送了无法识别的选择器
我正在尝试使用 AVPlayer 播放 MediaItem,然后尝试获取当前项目的持续时间,如下所示(持续时间是 CMTime 类型的对象):
duration = [[player currentItem] duration];
我在 iPad 中没有遇到任何问题,但在 iPod Touch 中,出现以下错误。我还没有在 iPhone 上尝试过这个。
由于未捕获的异常而终止应用程序 'NSInvalidArgumentException',原因:'-[AVPlayerItem 持续时间]: 无法识别的选择器发送到实例 0x186100'
任何指向修复程序的指针将不胜感激。
I am trying to play a MediaItem using AVPlayer and later trying to get the duration of the current item like this (duration is an object of type CMTime):
duration = [[player currentItem] duration];
I get no issues in iPad but in iPod Touch, I get the following error. I haven't tried this in iPhone yet.
Terminating app due to uncaught exception
'NSInvalidArgumentException', reason: '-[AVPlayerItem duration]:
unrecognized selector sent to instance 0x186100'
Any pointers to the fix will be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能在装有 iOS 的 iPod 上进行测试。 4.3.
根据
AVPlayerItem
文档,duration
仅在 iOS 4.3 或更高版本中可用。You're most likely testing this on an iPod with iOS < 4.3.
According to the
AVPlayerItem
documentation,duration
is only available in iOS 4.3 or later.