码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 关于TabviewController的那些事儿~

时间:2016-01-26 12:28:12      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

1:如果想让tabview可以滑动,cell不相应用户的点击。

需要在 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

   

    ExpenseViewCell *cell =[tableView dequeueReusableCellWithIdentifier:reuseItemIdentifier forIndexPath:indexPath];

    cell.userInteractionEnabled = NO;//设置关闭用户交互

 

    return cell;

}

 

iOS 关于TabviewController的那些事儿~

标签:

原文地址:http://www.cnblogs.com/aixixi/p/5159833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!