Created
February 12, 2015 16:58
-
-
Save wess/ee99efffd37fc7e37491 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)saveModel:(MTLModel *)model forKey:(NSString *)key error:(NSError *__autoreleasing *)error | |
{ | |
NSFileManager *fileManager = [NSFileManager defaultManager]; | |
NSString *path = [self pathForModel:model]; | |
path = [path stringByAppendingPathComponent:key]; | |
} | |
- (MTLModel *)objectForKey:(NSString *)key | |
{ | |
return nil; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment