我正在调试 AVPlayer 的一个问题。(运行时 AVPlayer 的 currentItem 设置为 NULL)。
所以我想为 currentItem 设置一个观察点以查找它的更改位置。
但是错误发生了:
(lldb) watchpoint set variable self->_audioPlayer->_currentItem
error: "_currentItem" is not a member of "(AVPlayer *) self->_audioPlayer"
我检查了“AVPlayer.h”:
@interface AVPlayer (AVPlayerItemControl)
/* indicates the current item of the player */
@property (nonatomic, readonly) AVPlayerItem *currentItem;
所以问题是如何设置这样的观察点,谢谢。