app cells are now clickable in tvOS

This commit is contained in:
Diego Waxemberg
2018-08-26 11:14:15 -07:00
parent 57191e3b9a
commit 92e2c0d7cc

View File

@@ -697,6 +697,10 @@ static NSMutableSet* hostList;
});
}
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
[self appClicked:_sortedAppList[indexPath.row]];
}
- (nonnull __kindof UICollectionViewCell *)collectionView:(nonnull UICollectionView *)collectionView cellForItemAtIndexPath:(nonnull NSIndexPath *)indexPath {
UICollectionViewCell* cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"AppCell" forIndexPath:indexPath];