Make data locking API optional

This commit is contained in:
Ryan Nystrom
2015-03-04 10:13:32 -08:00
parent 69dbbae91c
commit 6588e7b665
4 changed files with 10 additions and 6 deletions

View File

@@ -459,7 +459,7 @@ static BOOL _isInterceptedSelector(SEL sel)
- (void)dataControllerUnlockDataSource
{
ASDisplayNodeAssert(self.asyncDataSourceLocked, @"The data source has alredy been unlocked !");
ASDisplayNodeAssert(self.asyncDataSourceLocked, @"The data source has already been unlocked");
self.asyncDataSourceLocked = NO;
if ([_asyncDataSource respondsToSelector:@selector(collectionViewUnlockDataSource:)]) {