environment: Xcode 6.1.1 ;Storyboard issue: I'm creating some list with UITableView embed in a UIViewContrller instoryboard ,and all the cell can't be selected by click,but can be selected by long press unexpectedly. I don't know why and I can't figure it out . I hope someone help me . Thinks.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
HBillCell *cell = [tableView dequeueReusableCellWithIdentifier:@"billCell"];
[cell loadInfo:self.dataSource[indexPath.row]];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self performSegueWithIdentifier:@"bill2detail" sender:nil];
}