fix crash when typing and deleting on TypingDemoViewController.(beyond array)

This commit is contained in:
flappyFeline 2017-02-04 11:28:27 +08:00
parent fb64cc93d9
commit 9b9d67e1a9

View File

@ -296,6 +296,9 @@
- (CGSize)collectionView:(UICollectionView *)collectionView
layout:(UICollectionViewLayout*)collectionViewLayout
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row >= letterSizes_.count) {
return CGSizeZero;
}
NSValue *value = letterSizes_[indexPath.row];
return value.CGSizeValue;
}