ios - 继承UIView的类里创建一个tableView,然而对应的tableFooterView不能响应事件是为什么?
PHP中文网
PHP中文网 2017-04-18 09:06:05
0
5
593

我继承了UIView的类里创建了一个tableView,当我在这个UIView里设置按钮的事件能成功:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    self.customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, 80)];
    self.myButton = [[UIButton alloc] initWithFrame:CGRectMake(100, 20, 100, 40)];
    self.myButton.backgroundColor = [UIColor redColor];
    [self.myButton addTarget:self action:@selector(doButonAction) forControlEvents:UIControlEventTouchUpInside];
    [self.customView addSubview:self.myButton];
    
    return self.customView;
}

但是,我把按钮公开,然后再controller里设置事件就不行。这是什么原因?

View:
@property (strong, nonatomic) UIButton *myButton;


controller:

CustomView *cv = [[CustomView alloc] initWithFrame:self.view.bounds ];
[cv.myButton addTarget:self action:@selector(doButtonAction11) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:cv];
PHP中文网
PHP中文网

认证0级讲师

全部回覆(5)
大家讲道理

你打個斷點看看呢,在你addTarget的時候,myButton被創建了嗎,有內存嗎?

小葫芦

建議你弄block,點擊時調用就行

伊谢尔伦

你要確保 myButton 被初始化了。

阿神

沒有試過這樣傳遞事件,建議你用block/delegate/notice 。個人覺得是物件沒有創建。你印一下,看看controller這個物件是否存在。

阿神

有可能是你tableview的foot沒有給高度,所以看的到點不到吧。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板