UITableView and touching section headers
Can a section header in an i开发者_C百科nstance of UITableView already be made to intercept a touch?
I believe you can do this by using a UIControl
custom view for the section header. Then, you can call this method on the UIControl
to set up your touch:
- (void)addTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents
精彩评论