Skip to content

Instantly share code, notes, and snippets.

@gekitz
Created January 9, 2012 09:34
Show Gist options
  • Save gekitz/1582190 to your computer and use it in GitHub Desktop.
Save gekitz/1582190 to your computer and use it in GitHub Desktop.
Memory Warning Fake
-(void) performFakeMemoryWarning {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SEL memoryWarningSel = @selector(_performMemoryWarning);
if ([[UIApplication sharedApplication] respondsToSelector:memoryWarningSel]) {
[[UIApplication sharedApplication] performSelector:memoryWarningSel];
NSLog(@"Memory Warning!!");
}
[pool release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment