//// UIImage+MWPhotoBrowser.m// Pods//// Created by Michael Waterfall on 05/07/2015.////#import "UIImage+MWPhotoBrowser.h"@implementationUIImage(MWPhotoBrowser)+(UIImage*)imageForResourcePath:(NSString*)pathofType:(NSString*)typeinBundle:(NSBundle*)bundle{return[UIImageimageWithContentsOfFile:[bundlepathForResource:pathofType:type]];}+(UIImage*)clearImageWithSize:(CGSize)size{UIGraphicsBeginImageContextWithOptions(size,NO,[UIScreenmainScreen].scale);UIImage*blank=UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();returnblank;}@end