12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #import "NSBundle+CTAssetsPickerController.h"
- #import "CTAssetsPickerController.h"
- @implementation NSBundle (CTAssetsPickerController)
- + (NSBundle *)ctassetsPickerBundle
- {
- return [NSBundle bundleWithPath:[NSBundle ctassetsPickerBundlePath]];
- }
- + (NSString *)ctassetsPickerBundlePath
- {
- return [[NSBundle bundleForClass:[CTAssetsPickerController class]]
- pathForResource:@"CTAssetsPickerController" ofType:@"bundle"];
- }
- @end
|