向 NSBundle 询问其资源名称
Posted
技术标签:
【中文标题】向 NSBundle 询问其资源名称【英文标题】:Ask an NSBundle for its resource name 【发布时间】:2016-11-14 10:04:06 【问题描述】:我已经为类似这样的本地化加载了BSBundle
:
NSURL *const bundleURL = [[NSBundle mainBundle]
URLForResource:localizationName
withExtension:@"lproj"];
NSBundle *const bundle = [NSBundle bundleWithURL:bundleURL];
...我如何(在其他地方)通过向bundle
发送消息来取回localizationName
?
【问题讨论】:
【参考方案1】:基于this answer,这是可行的:
[[bundle.bundleURL URLByDeletingPathExtension] lastPathComponent]
【讨论】:
以上是关于向 NSBundle 询问其资源名称的主要内容,如果未能解决你的问题,请参考以下文章
iOS开发之0行代码加载NSBundle中的@2x与@3x图片