标签:
知识要点
1. xib最终会变成nib文件
2. NSBundle实例方法 - (NSString *)pathForResource:(NSString *)name ofType:(NSString *)ext;
如果bundle中不存在某个文件,则返回的path为nil,如果存在 则会返回该文件的路径
因此运行时判断xib是否存在某个xib文件(eg:TestXibController.xib)方法:
NSString *nibPath = [[NSBundle mainBundle] pathForResource:@"TestXibController" ofType:@"nib"];
标签:
原文地址:http://www.cnblogs.com/binglin92/p/4634010.html