Created
August 16, 2017 15:56
-
-
Save kharmabum/c3016315205a207b32903b91e56ab358 to your computer and use it in GitHub Desktop.
Check for percentage visibility of cell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void)scrollViewDidScroll:(UIScrollView *)sender | |
{ | |
[self checkWhichVideoToEnable]; | |
} | |
-(void)checkWhichVideoToEnable | |
{ | |
for(UITableViewCell *cell in [tblMessages visibleCells]) | |
{ | |
if([cell isKindOfClass:[VideoMessageCell class]]) | |
{ | |
NSIndexPath *indexPath = [tblMessages indexPathForCell:cell]; | |
CGRect cellRect = [tblMessages rectForRowAtIndexPath:indexPath]; | |
UIView *superview = tblMessages.superview; | |
CGRect convertedRect=[tblMessages convertRect:cellRect toView:superview]; | |
CGRect intersect = CGRectIntersection(tblMessages.frame, convertedRect); | |
float visibleHeight = CGRectGetHeight(intersect); | |
if(visibleHeight>VIDEO_CELL_SIZE*0.6) // only if 60% of the cell is visible | |
{ | |
// unmute the video if we can see at least half of the cell | |
[((VideoMessageCell*)cell) muteVideo:!btnMuteVideos.selected]; | |
} | |
else | |
{ | |
// mute the other video cells that are not visible | |
[((VideoMessageCell*)cell) muteVideo:YES]; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment