我创建了一个自定义的tableView单元格,我可以看到带有所需自定义单元格的tableView。现在问题是我无法选择我的表行。我试图在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
内显示控制台输出
但它永远不会叫。我很迷惑。我不知道自己做错了什么。以下是我的自定义单元格类:
- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
// Initialization code
CGRect contentRect = self.contentView.bounds;
CGFloat boundsX = contentRect.origin.x;
_title = [[UILabel alloc]initWithFrame:CGRectMake(boundsX +70, 5, 100, 25)];
_title.textAlignment = UITextAlignmentLeft;
_title.font = [UIFont systemFontOfSize:14];
_details = [[UILabel alloc]initWithFrame:CGRectMake(boundsX + 70, 30, 100, 15)];
_details.textAlignment = UITextAlignmentLeft;
_details.font = [UIFont systemFontOfSize:10];
_duration = [[UILabel alloc] initWithFrame:CGRectMake(boundsX + 200, 10, 65, 15)];
_duration.textAlignment = UITextAlignmentRight;
_duration.font = [UIFont systemFontOfSize:10];
_price = [[UILabel alloc]initWithFrame:CGRectMake(boundsX + 180, 30, 80, 15)];
_price.textAlignment = UITextAlignmentRight;
_price.font = [UIFont systemFontOfSize:10];
_listingImage = [[UIImageView alloc]initWithFrame:CGRectMake(boundsX +10, 0, 50, 50)];
[self.contentView addSubview:_title];
[self.contentView addSubview:_details];
[self.contentView addSubview:_price];
[self.contentView addSubview:_duration];
[self.contentView addSubview:_listingImage];
[_title release];
[_details release];
[_duration release];
[_price release];
[_listingImage release];
}
return self;
}
以下是我的tableView: cellForRowAtIndexPath:
功能:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
CustomizedCell *cell = (CustomizedCell *) [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[CustomizedCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
// cell = [[[CustomizedCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier] autorelease];
}
ADJListing *listing = [self.dataSource.listings objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
cell._title.text = listing.title;
cell._details.text = listing.details;
cell._price.text = [listing.price stringValue];
cell._duration.text = (NSString*) listing.start_datetime;
cell._listingImage.image = [UIImage imageNamed:@"picture.png"];
return cell;
}
这又是我的tableView:didSelectRowAtIndexPath:
方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"data");
detailedVC = [[DetailedViewController alloc] init];
detailedVC.dataSource = self.dataSource;
[self.navigationController pushViewController:detailedVC animated:YES];
[detailedVC release];
}
任何帮助都将不胜感激。
由于 维克
答案 0 :(得分:1)
我明白了。我不知何故有self.tableView.allowsSelection = NO,我错过了它。它的工作正常。感谢
答案 1 :(得分:0)
尝试在调用didSelectRowAtIndexPath方法的其余部分后取消选择该行。
另外,您是否已将UITableViewController子类声明为tableview的委托? IB中最容易做到这一点。如果这不是UITableViewController子类,则需要通过在头文件中声明它来自己实现UITableViewDelegate。
答案 2 :(得分:0)
嗨检查xib文件。 转到.xib,选择您的视图,然后在右侧面板中,检查“已启用用户交互”。