知识要点
1. xib最终会变成nib文件
2.NSBundle实例方法- (NSString*)pathForResource:(NSString*)name ofType:(NSString*)ext;
如果bundle中不存在某个文件,则返回的path为nil,如果存在 则会返回该文件的路径
因此运行时判断xib是否存在某个xib文件(eg:TestXibController.xib)方法:
NSString*nibPath = [[NSBundlemainBundle]pathForResource:@"TestXibController"ofType:@"nib"];
网友评论