iphone – 检查.nib或.xib文件是否存在

iphone – 检查.nib或.xib文件是否存在,第1张

概述在尝试使用initWithNibName:bundle或类似文件加载之前,检查Nib或Xib文件是否存在的最佳方式是什么? 宏 #define AssertFileExists(path) NSAssert([[NSFileManager defaultManager] fileExistsAtPath:path], @"Cannot find the file: %@", path)#defi 在尝试使用initWithNibname:bundle或类似文件加载之前,检查Nib或Xib文件是否存在的最佳方式是什么?解决方法 宏

#define AssertfileExists(path) NSAssert([[NSfileManager defaultManager] fileExistsAtPath:path],@"Cannot find the file: %@",path)#define AssertNibExists(file_name_string) AssertfileExists([[NSBundle mainBundle] pathForResource:file_name_string ofType:@"nib"])

以下是您尝试加载.xib或.nib之前可以调用的一组宏,它们将帮助识别丢失的文件,并发出有关丢失的信息。

使用的实际解决方案是:

if([[NSBundle mainBundle] pathForResource:filename ofType:@"nib"] != nil) {//file found...}

请注意,该文档说明ofType:应该是该文件的扩展名。不过即使你使用的是.xib,你需要传递“@”nib“或者你会得到一个假阴性。

总结

以上是内存溢出为你收集整理的iphone – 检查.nib或.xib文件是否存在全部内容,希望文章能够帮你解决iphone – 检查.nib或.xib文件是否存在所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1074666.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存