Add delegate call to collectionView:didSelectItemsAtIndexPaths:

This commit is contained in:
Gregory John Casamento 2023-02-04 10:28:11 -05:00
parent a453d12e7c
commit 73759407bb

View file

@ -583,6 +583,11 @@ static NSString *_placeholderItem = nil;
}
}
END_FOR_IN(indexPaths);
if ([_delegate respondsToSelector: @selector(collectionView:didSelectItemsAtIndexPaths:)])
{
[_delegate collectionView: self didSelectItemsAtIndexPaths: indexPaths];
}
}
- (NSIndexSet *) selectionIndexes