美文网首页
iOS 运行时判断xib是否存在

iOS 运行时判断xib是否存在

作者: hgl | 来源:发表于2017-08-08 09:53 被阅读269次

    知识要点

    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"];

    相关文章

      网友评论

          本文标题:iOS 运行时判断xib是否存在

          本文链接:https://www.haomeiwen.com/subject/znzzlxtx.html