Fix conditional

This commit is contained in:
Levi McCallum
2016-03-25 11:54:56 -07:00
parent 687be58621
commit c07175bfcb

View File

@@ -57,7 +57,7 @@
- (BOOL)_dataSourceIsEmpty
{
return ([self.collectionView numberOfSections] > 0 && [self.collectionView numberOfItemsInSection:0] > 0);
return ([self.collectionView numberOfSections] == 0 || [self.collectionView numberOfItemsInSection:0] == 0);
}
- (CGRect)_visibleRect