Various styles of gesture sliding Cell

Various styles of gesture sliding Cell

Source code introduction

MGSwipeTableCell is a subclass of UITableViewCell that displays clickable buttons in a variety of transition methods. The library is compatible with all different ways to create UITableViewCell.
Source code running screenshot

Source code snippet

  1. #pragma mark Trigger Actions
  2.   
  3. -( void ) handleClick: (id) sender fromExpansion:(BOOL) fromExpansion
  4. {
  5. bool autoHide = false ;
  6. #pragma clang diagnostic push
  7. #pragma clang diagnostic ignored "-Wundeclared-selector"  
  8. if ([sender respondsToSelector: @selector (callMGSwipeConvenienceCallback:)]) {
  9. //call convenience block callback if exits (usage of MGSwipeButton class is not compulsory)  
  10. autoHide = [sender performSelector: @selector (callMGSwipeConvenienceCallback:) withObject:_cell];
  11. }
  12. #pragma clang diagnostic pop
  13.       
  14. if (_cell.delegate && [_cell.delegate respondsToSelector: @selector (swipeTableCell:tappedButtonAtIndex:direction:fromExpansion:)]) {
  15. NSInteger index = [_buttons indexOfObject:sender];
  16. if (!_fromLeft) {
  17. index = _buttons.count - index - 1 ; //right buttons are reversed  
  18. }
  19. autoHide|= [_cell.delegate swipeTableCell:_cell tappedButtonAtIndex:index direction:_fromLeft ? MGSwipeDirectionLeftToRight : MGSwipeDirectionRightToLeft fromExpansion:fromExpansion];
  20. }
  21.       
  22. if (fromExpansion) {
  23. _expandedButton = nil;
  24. _cell.swipeOffset = 0 ;
  25. }
  26. else   if (autoHide) {
  27. [_cell hideSwipeAnimated:YES];
  28. }
  29.   
  30. }

Source code download: http://download..com/data/1985034

<<:  Forward SMS to a specified mobile number by keyword

>>:  96% of mobile malware targets Android: More than 5 billion apps can be attacked

Recommend

"How to choose a good project for SEO entrepreneurship? 》

The following is a transcript of Mr. Hu Yong’s sp...

Review of Pinduoduo’s gameplay in 2019: branding and hit products!

Today I will mainly share with you some trial and...

Why are some dreams always so strange? Maybe it has something to do with it…

Alice chases a rabbit with a pocket watch and ent...

How much does it cost to develop a Huludao specialty mini program?

The overall investment promotion of Huludao speci...

iOS vs Android: Will Apple repeat the mistakes of its PC business?

Since its birth, the iPhone has attracted countle...

Summary of New Consumer Brands’ Breakthrough in 2021

Breaking the impasse: We must coordinate with the...

Windows 10: A return to tradition

Windows 10 Technical Preview has been released fo...

What kind of clam is the mulberry wine in "The Eternal Moon"?

Recently, the Xianxia drama "Chang Yue Jin M...

0.1mm "bear" is expected to help humans realize space travel

Author: Duan Yuechu and Huang Xianghong A tardigr...

Can eating the right snacks help you live longer? Foodies finally have a reason

Key Points ★ Treat snacks rationally: choosing th...