如何检测 iPhone 中 NSString 是否以 mp4 结尾
我有一个 NSString,我想检测它是否以 mp4 结尾,然后使用 VideoView 打开它。有没有办法做到这一点? 谢谢
I have a NSString
and I want to detect if it ends with mp4 and then use a VideoView
to open it.Is there a way to do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将告诉您它的路径扩展名是否以“.mp4”结尾。什么是
VideoView
?That will tell you if it ends with ".mp4" as its path extension. What's a
VideoView
?有一种比 Jonathan 的方法更简单的方法:
如果您需要将表示文件路径的
NSString
分解到其组件中,或者附加目录/文件名,则path
方法确实有用。但在这种情况下,我认为使用上面的内容更干净(并且更容易阅读)。There's an easier way than Jonathan's method:
If you need to break up an
NSString
that represents a file path into its components, or append a directory/file name, then thepath
methods are indeed helpful. In this case though, I think it's cleaner (and much easier to read) to use the above.