我在指定的UIView
中添加了UITableViewCell
,然后我在UIView
添加了两个自定义按钮。并且出现的问题是,当我点击按钮时,它没有响应该方法。
答案 0 :(得分:3)
您是否在创建按钮时添加了内部事件(或您使用的任何事件)的触摸目标?
[tempButton addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
- (void) buttonPressed:(UIButton *) sender
{
//Your implementation
}