Merge branch 'master' into update-objc

Conflicts:
	AsyncDisplayKit/Details/UIView+ASConvenience.h
This commit is contained in:
Adlai Holler
2015-11-18 14:17:09 -08:00
32 changed files with 1005 additions and 42 deletions

View File

@@ -31,4 +31,16 @@
return (ASCollectionView *)[super view];
}
- (void)clearContents
{
[super clearContents];
[self.view clearContents];
}
- (void)clearFetchedData
{
[super clearFetchedData];
[self.view clearFetchedData];
}
@end