本文介绍了用作Custom UITableViewCell的XIB中的自定义按钮不响应抽头(ios7)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我在这里将ios6应用程序升级到ios7,现在我无法在tableviewcells内的自定义按钮(或其他子视图)上接收点击或其他操作。
So here I am upgrading a working ios6 app to ios7, and now I can't receive taps or other actions on custom buttons (or other subviews) inside my tableviewcells.
编辑:
我的代码:
这是我部署PlaceCell的地方
Here is where I deploy my PlaceCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"PlaceCell";
PlaceCell *cell = [tableView dequeueReusableCellWithIdentifier: cellIdentifier];
if (!cell) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"PlaceCell" owner:self options:nil];
cell = [nib lastObject];
cell.reuseIdentifier = cellIdentifier;
}
[cell configureCellWithPlace: [self.places objectAtIndex:indexPath.row]];
cell.delegate = self;
cell.userInteractionEnabled = YES;
return cell;
}
然后它是一个普通的自定义单元格,其按钮连接到某些动作通过界面。
它与iOS6完美配合,但它对iOS7无效。
And then it is a normal custom cell with buttons which are connected to some actions by the interface.It works perfectly with iOS6, but it does nothing with iOS7.
感谢您的帮助。
推荐答案
解决方案:
[cell.contentView setUserInteractionEnabled: NO];
这篇关于用作Custom UITableViewCell的XIB中的自定义按钮不响应抽头(ios7)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!