我有APParallaxHeader的表格视图。这会在表后面创建一个视图,该视图充当它的标题。我的问题是,我无法点击此标题中的任何内容。我已经尝试覆盖-hitTest
的{{1}},但没有成功。
这是我的视图控制器:
UITableView
修改
我的进一步调查表明,问题可以简化为#import "TableViewController.h"
#import "UIScrollView+APParallaxHeader.h"
@implementation TableViewController
- (void)viewDidLoad
{
[super viewDidLoad];
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];
[button setTitle:@"Hello" forState:UIControlStateNormal];
[button setBackgroundColor:[UIColor redColor]];
[button addTarget:self action:@selector(ping) forControlEvents:UIControlEventTouchUpInside];
[self.tableView addParallaxWithView:button andHeight:320];
}
- (void)ping
{
NSLog(@"%s", __PRETTY_FUNCTION__);
}
@end
以下的UIButton
。如何通过按钮获得点击事件?