Skip to content

Instantly share code, notes, and snippets.

View weejayuk's full-sized avatar

Will Johnston weejayuk

  • Control Strategies
  • Alfriston, UK
View GitHub Profile
@adamgit
adamgit / gist:3839993
Created October 5, 2012 14:11
VCLoadApplication method swizzle
@implementation UIView (swizzled)
-(void) swizzledSetNeedsDisplay
{
//if( _currentFrame != _lastDrawnFrame )
{
//[super setNeedsDisplay];
}
}
@end