Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 iPod 库中导入项目,并希望为每个导入的 MPMediaItem 生成一个唯一的文件名。我希望文件名唯一地代表一个 MPMediaItem,这样如果用户再次导入它,我在本地库中没有两个相同的文件。
实现这一目标的最佳方法是什么?
我不确定我是否正确理解了您的问题,但每个 MPMediaItem 都有一个唯一标识符
[mediaItem valueForProperty:MPMediaItemPropertyPersistentID];
这将返回一个 longlong 的 NSNumber。希望这会有所帮助,或者如果我错过了理解,请告诉我。