A swift file provides custom swipe table view cell.
##How to use:
- Copy THSwipeCell.swift file on your project.
- Subclass THSwipeCell.
- Override awakeFromNib and add a subview to cell contentView for the whole boundary and assign it to cellContainerView property, then append buttons(tag as Identifier) to property buttonOptions array list.
- Add UI components to cellContainerView.
- Implement THSwipeCellDelegate protocol and confirm the protocol for the custom cell on cellForRowAtIndex method.
- Use THSwipeCellTable as your table.
- Implement didSelectRowAtIndexPath delegate method and call respective method of THSwipeCellTable.
- Implement scrollViewWillBeginDragging, scrollViewDidScroll and scrollViewDidEndDragging Delegate methods of UIScrollView and call the respective methods in THSwipeCellTable.
- Call didOpenCell method of THSwipeCellTable inside the didOpenSwipeCell of THSwipeCellDelegate.
##License THSwipeCell is licensed under the terms of the MIT License. Please see the License file for full details.