Skip to content

Instantly share code, notes, and snippets.

@ipreencekmr
Created December 31, 2013 05:36
Show Gist options
  • Save ipreencekmr/8193039 to your computer and use it in GitHub Desktop.
Save ipreencekmr/8193039 to your computer and use it in GitHub Desktop.
//
// UITableView+TouchGesture.h
// HHH
//
// Created by Prince Kumar Sharma on 31/12/13.
// Copyright (c) 2013 Prince Kumar Sharma. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol MyCustomDelegate <UITableViewDelegate>
-(void)tableView:(UITableView *)tableView touchBegan:(NSSet*)touches withEvent:(UIEvent *)event;
-(void)tableView:(UITableView *)tableView touchEnded:(NSSet *)touches withEvent:(UIEvent *)event;
@end
@interface UITableView (TouchGesture)
- (id<MyCustomDelegate>) customDelegate;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment