// // SWTableViewCell.h // SWTableViewCell // // Created by Chris Wendel on 9/10/13. // Copyright (c) 2013 Chris Wendel. All rights reserved. // #import #import #import "SWCellScrollView.h" #import "SWLongPressGestureRecognizer.h" #import "SWUtilityButtonTapGestureRecognizer.h" #import "NSMutableArray+SWUtilityButtons.h" @class SWTableViewCell; typedef NS_ENUM(NSInteger, SWCellState) { kCellStateCenter, kCellStateLeft, kCellStateRight, }; @protocol SWTableViewCellDelegate @optional - (void)swipeableTableViewCell:(SWTableViewCell *)cell didTriggerLeftUtilityButtonWithIndex:(NSInteger)index; - (void)swipeableTableViewCell:(SWTableViewCell *)cell didTriggerRightUtilityButtonWithIndex:(NSInteger)index; - (void)swipeableTableViewCell:(SWTableViewCell *)cell scrollingToState:(SWCellState)state; - (BOOL)swipeableTableViewCellShouldHideUtilityButtonsOnSwipe:(SWTableViewCell *)cell; - (BOOL)swipeableTableViewCell:(SWTableViewCell *)cell canSwipeToState:(SWCellState)state; - (void)swipeableTableViewCellDidEndScrolling:(SWTableViewCell *)cell; @end @interface SWTableViewCell : UITableViewCell @property (nonatomic, copy) NSArray *leftUtilityButtons; @property (nonatomic, copy) NSArray *rightUtilityButtons; @property (nonatomic, weak) id delegate; - (void)setRightUtilityButtons:(NSArray *)rightUtilityButtons WithButtonWidth:(CGFloat) width; - (void)setLeftUtilityButtons:(NSArray *)leftUtilityButtons WithButtonWidth:(CGFloat) width; - (void)hideUtilityButtonsAnimated:(BOOL)animated; - (void)showLeftUtilityButtonsAnimated:(BOOL)animated; - (void)showRightUtilityButtonsAnimated:(BOOL)animated; - (BOOL)isUtilityButtonsHidden; @end