码迷,mamicode.com
首页 > 其他好文 > 详细

横向滚动的UITableView

时间:2015-12-25 11:22:51      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

横向滚动的UITableView

1.实现思路

旋转tableview,90度,cell也旋转90度,

上代码:

 

 1     _tableView.transform =CGAffineTransformMakeRotation(-M_PI /2);
 2 
 3 //delegate
 4 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 5 {
 6     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"identifier"];
 7     if (cell == nil) {
 8         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"identifier"];
 9         cell.backgroundColor =[UIColor groupTableViewBackgroundColor];
10         cell.textLabel.text=@"都好好的";
11         // cell顺时针旋转90度
12         cell.contentView.transform = CGAffineTransformMakeRotation(M_PI / 2);
13     }
14     
15     return cell;
16 }

 

横向滚动的UITableView

标签:

原文地址:http://www.cnblogs.com/luanmage/p/5075214.html

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