1234567891011121314151617181920212223 |
- //
- // NSData+YYAdd.m
- // YYKit <https://github.com/ibireme/YYKit>
- //
- // Created by ibireme on 13/4/4.
- // Copyright (c) 2015 ibireme.
- //
- // This source code is licensed under the MIT-style license found in the
- // LICENSE file in the root directory of this source tree.
- //
- #import "NSData+YYAdd.h"
- @implementation NSData (YYAdd)
- + (NSData *)dataNamed:(NSString *)name {
- NSString *path = [[NSBundle mainBundle] pathForResource:name ofType:@""];
- if (!path) return nil;
- NSData *data = [NSData dataWithContentsOfFile:path];
- return data;
- }
- @end
|