UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(0, 0, 320, 40); [btn addTarget:self action:@selector() forControlEvents:UIControlEventTouchDownRepeat]; [cell addSubview:btn]; 使用以上代码,...