我需要在UITableView的单元格内获取touchesBegan和touchesMoved以获取UIImageView。 但是如果我在单元格中触摸UIImageView,那么touchesBegan和touchesMoved就不会触发。 touchesBegan和touchesMoved工作,如果我触摸超出UITableView的任何其他UIImageView。
这是从viewDidLayoutSubviews()...............调用的UITableView的分配。 tableFrame = CGRectMake(y-42,x + 10 + DEVICE_TABLE_BORDER_WIDTH,height,width);
device_off_tableView = [[UITableView alloc]initWithFrame:tableFrame style:UITableViewStylePlain];
device_off_tableView.rowHeight = device_off_row_height;
device_off_tableView.sectionFooterHeight = 0;
device_off_tableView.sectionHeaderHeight = 0;
device_off_tableView.scrollEnabled = YES;
device_off_tableView.bounces = YES;
device_off_tableView.delegate = self;
device_off_tableView.dataSource = self;
device_off_tableView.allowsSelection = NO;
device_off_tableView.tag = channel;
device_off_tableView.transform = CGAffineTransformMakeRotation(-M_PI/2);
device_off_tableView.autoresizesSubviews = NO;
// Add device_off_tableView to the view:
device_off_tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
off_record_index = expected_off_index = 0;
[device_off_tableView reloadData];
[[self view] addSubview: device_off_tableView];
这是在单元格中分配UIButton ...........................
// Put invisible UIButton on top of device icon, to detect start of drag: !!!
UIButton* invisible_drag_button = [UIButton buttonWithType:UIButtonTypeCustom];
invisible_drag_button.frame = CGRectMake (x,y, w,h); // location and size of device off icon
invisible_drag_button.tag = cell_record_index; // store user device's record index
[invisible_drag_button addTarget: self
action:@selector( delegate_drag_start: )
forControlEvents: UIControlEventTouchDown ];
[cell.contentView addSubview: invisible_drag_button ];
以下是触摸代表:................................
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
printf("touchesBegan \n");
}
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
// Get touch event's details:
UITouch *touch = [[event allTouches] anyObject];
// Touching image to be dragged?
if([touch view] == self.device_drag_UIImageView)
{
printf("touchesMoved device_drag_UIImageView \n");
CGPoint location = [touch locationInView: self.view];
self.device_drag_UIImageView.center=location;
}
else
{
printf("touchesMoved WRONG IMAGE \n");
}
}
答案 0 :(得分:2)
假设您在单元格类中有touchesMoved:withEvent:
,这应该可以正常工作。
在UITableViewController
上尝试以下操作self.tableView.canCancelContentTouches = NO;
self.tableView.delaysContentTouches = NO;
答案 1 :(得分:1)
图片视图将userInteractionEnabled
设置为NO
。这意味着你不会得到触摸事件。将其设置为YES
,它可以解决您的问题。但是,更好的方法是使用UIPanGestureRecognizer
。您仍然需要将userInteractionEnabled
设置为YES
,但它更适合使用tableview