Skip to content

Instantly share code, notes, and snippets.

View vinzenzweber's full-sized avatar
👋
I may be slow to respond.

Vinzenz Weber vinzenzweber

👋
I may be slow to respond.
View GitHub Profile
/**
* Return an array with SFMediaItems found in the local database for the given predicate.
*/
-(NSArray *)fetchSFMediaItemWithPredicateFormat:(NSString *)format, ... {
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"SFMediaItem" inManagedObjectContext:self.managedObjectContext];
[request setEntity:entity];
va_list args;