Skip to content

Instantly share code, notes, and snippets.

@hechien
Created April 2, 2011 07:38
Show Gist options
  • Save hechien/899313 to your computer and use it in GitHub Desktop.
Save hechien/899313 to your computer and use it in GitHub Desktop.
UITableView Section Touch detection.
id touchedView = [[touches anyObject] view];
if([[touchedView class] isEqual: [NSClassFromString(@"UITableHeaderFooterView") class]]){
NSLog(@"Text: %@", [touchedView performSelector:@selector(text)]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment