tableviewcell自适应cell高度

简介:


tableviewcell自适应cell高度

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    return self.arr.count;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];    cell.textLabel.numberOfLines = 100;    cell.textLabel.font = [UIFont systemFontOfSize:15];    cell.textLabel.text = self.arr[indexPath.row];    return cell;}- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{        NSString* text = self.arr[indexPath.row];        CGSize constraint = CGSizeMake(375-40, 100);            NSAttributedString* attributedText = [[NSAttributedString alloc]initWithString:text attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:15]}];        CGRect rect = [attributedText boundingRectWithSize:constraint options:NSStringDrawingUsesLineFragmentOrigin context:nil];        CGSize size = rect.size;        CGFloat height = MAX(size.height, 20);    NSLog(@"%f",height);    return height+10;        }

iostableviewcell自适应cell高度

无限图片轮播Banner

// 网络加载图片的轮播器(只需一步设置即可使用)cycleScrollView.imageURLStringsGroup = imagesURLStrings;

现已支持cocoapods导入:pod 'SDCycleScrollView','~> 1.3'

如需更详细的设置,参考如下:

cycleScrollView.pageControlAliment = SDCycleScrollViewPageContolAlimentRight; // 设置pageControl居右,默认居中cycleScrollView.titlesGroup = 标题数组(数组元素个数必须和图片数组元素个数保持一致); // 如果设置title数组,则会在图片下面添加标题cycleScrollView.delegate = ; // 如需监听图片点击,请设置代理,实现代理方法cycleScrollView.autoScrollTimeInterval = ;// 自定义轮播时间间隔











本文转自 卓行天下  51CTO博客,原文链接:http://blog.51cto.com/9951038/1747471,如需转载请自行联系原作者
目录
相关文章
|
7月前
|
编解码
element-ui 表格滚动条(不同分辨率)自适应问题;
element-ui 表格滚动条(不同分辨率)自适应问题;
314 1
|
1月前
在使用 Flexbox 布局实现自适应宽度的品字布局时,子元素的排列顺序是否可以调整?
【10月更文挑战第27天】使用Flexbox布局实现自适应宽度的品字布局时,可以通过调整HTML结构中的顺序或使用 `order` 属性来灵活地调整子元素的排列顺序,以满足不同的设计和布局需求。
|
1月前
|
弹性计算
|
7月前
使用SDAutoLayout实现控件根据内容进行宽度自适应和高度自适应
使用SDAutoLayout实现控件根据内容进行宽度自适应和高度自适应
126 2
|
7月前
UITableView根据表格内容进行高度自适应与使用Masonry实现根据内容进行宽度自适应和高度自适应
UITableView根据表格内容进行高度自适应与使用Masonry实现根据内容进行宽度自适应和高度自适应
104 0
|
前端开发 容器
Grid实现自适应九宫格布局
Grid实现自适应九宫格布局
343 0
自定义的 ListBoxItem 自适应ListBox的宽度
原文:自定义的 ListBoxItem 自适应ListBox的宽度    主要是要设置HorizontalContentAlignment的值,而不是HorizontalAlignment 1 2 3 4 5 6 ...
947 0