标签:
1:如果想让tabview可以滑动,cell不相应用户的点击。
需要在
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
ExpenseViewCell *cell =[tableView dequeueReusableCellWithIdentifier:reuseItemIdentifier forIndexPath:indexPath];
cell.userInteractionEnabled = NO;//设置关闭用户交互
return cell;
}
标签:
原文地址:http://www.cnblogs.com/aixixi/p/5159833.html