第一种:
NSString *bundlePath = [[NSBundle bundleForClass:[self class]] pathForResource:@"boundleName"ofType:@"bundle"];\
[[NSBundle bundleWithPath:bundlePath].resourcePath stringByAppendingPathComponent:fileName];\
NSURL* associateBundleURL = [[NSBundle mainBundle] URLForResource:@"Frameworks" withExtension:nil];\
associateBundleURL = [associateBundleURL URLByAppendingPathComponent:@"podName"];\
associateBundleURL = [associateBundleURL URLByAppendingPathExtension:@"framework"];\
NSBundle *associateBunle = [NSBundle bundleWithURL:associateBundleURL];\
associateBundleURL = [associateBunle URLForResource:@"bundleName" withExtension:@"bundle"];\
[[NSBundle bundleWithURL:associateBundleURL].resourcePath stringByAppendingPathComponent:name];\
网友评论