使用uilabel重新自调整高度后显示横线和竖线问题
这个使用uilabel自调节高度发现的问题,代码如下:
//content label
NSString *contentValue = ((MessageDetailRecord *)[self.entriesArray objectAtIndex:indexPath.row]).content;
CGFloat width = 0.0f;
CGSize orignalSize;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer]){
orignalSize = [contentValue sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20.0f]}];
width = orignalSize.width;
}else{
width = [contentValue sizeWithFont:[UIFont systemFontOfSize:20.0f ]].width;
}
#pragma clang diagnostic pop
//set the most large width
if (width > cell.frame.size.width - 90.0f) {
width = cell.frame.size.width - 90.0f;
}
UILabel *content = [[UILabel alloc]initWithFrame:CGRectMake(0.0f, 0.0f, width, 0.0f)];
self.messageContentLabel = content;
self.messageContentLabel.font = [UIFont systemFontOfSize:20.0];
self.messageContentLabel.backgroundColor = [UIColor clearColor];
self.messageContentLabel.numberOfLines = 0;
self.messageContentLabel.adjustsFontSizeToFitWidth = YES;
self.messageContentLabel.lineBreakMode = NSLineBreakByWordWrapping;
self.messageContentLabel.backgroundColor = [UIColor colorWithRed:241/255.0f green:241/255.0f blue:241/255.0f alpha:1.0];
CGRect labelFrameContent = self.messageContentLabel.frame;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer]) {
NSDictionary *stringAttributes = [NSDictionary dictionaryWithObject:self.messageContentLabel.font forKey: NSFontAttributeName];
labelFrameContent.size = [contentValue boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX)
options:NSStringDrawingTruncatesLastVisibleLine|NSStringDrawingUsesLineFragmentOrigin
attributes:stringAttributes context:nil].size;
}else{
labelFrameContent.size = [contentValue sizeWithFont:self.messageContentLabel.font
constrainedToSize:CGSizeMake(width, CGFLOAT_MAX)
lineBreakMode:self.messageContentLabel.lineBreakMode];
}
#pragma clang diagnostic pop
//adjust the height
if (labelFrameContent.size.height < 50.0f) {
labelFrameContent.size.height = 50.0f;
}
labelFrameContent.size.width += 10.0f;
if (labelFrameContent.size.width > cell.frame.size.width - 90.0f) {
labelFrameContent.size.width = cell.frame.size.width - 90.0f;
}
labelFrameContent.origin.x = 70.0f;
labelFrameContent.origin.y = self.cellDateLabel.frame.size.height + 10.0f;
self.messageContentLabel.frame = labelFrameContent;
[cell.contentView addSubview:self.messageContentLabel];
解决方法是使用uitextview来替换即可
UITextView *content = [[UITextView alloc]initWithFrame:CGRectMake(0.0f, 0.0f, width, 0.0f)];
self.messageContentLabel = content;
[content release];
self.messageContentLabel.font = [UIFont systemFontOfSize:16.0f];
self.messageContentLabel.backgroundColor = [UIColor clearColor];
self.messageContentLabel.scrollEnabled = NO;
self.messageContentLabel.userInteractionEnabled = NO;
//self.messageContentLabel.numberOfLines = 0;
//self.messageContentLabel.adjustsFontSizeToFitWidth = YES;
// self.messageContentLabel.lineBreakMode = NSLineBreakByWordWrapping;
self.messageContentLabel.backgroundColor = [UIColor colorWithRed:241/255.0f green:241/255.0f blue:241/255.0f alpha:1.0];
self.messageContentLabel.text = contentValue;
self.messageContentLabel.textColor = [UIColor grayColor];
CGRect labelFrameContent = self.messageContentLabel.frame;
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer])
{
labelFrameContent.size = [contentValue boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX)
options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17.0f]}
context:nil].size;
}
else
{
labelFrameContent.size = [contentValue sizeWithFont:self.messageContentLabel.font constrainedToSize:CGSizeMake(width, CGFLOAT_MAX)];
}
#pragma clang diagnostic pop
注意:这个在ios 7.0以前的版本如果使用uitextview的话布局会有问题,如果使用uilabel的话在ios7.0上又会出现横竖线。所以最终的解决方案是区分当前的版本对待。
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//delete the unnessary separator line
static NSString *CellIndentifier = @"MessageDetailList";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIndentifier];
CGRect cellFrame =[cell frame];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIndentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
if (self.entriesArray &&
[self.entriesArray count] > 0) {
while ([cell.contentView.subviews lastObject] != nil)
{
[(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview];
}
UILabel *dateLabel = [[UILabel alloc]initWithFrame:CGRectMake(cell.frame.size.width/4, 5.0f, cell.frame.size.width/2, 0.0f)];
self.cellDateLabel = dateLabel;
[dateLabel release];
self.cellDateLabel.text = ((MessageDetailRecord *)[self.entriesArray objectAtIndex:indexPath.row]).date;
self.cellDateLabel.textAlignment = NSTextAlignmentCenter;
self.cellDateLabel.font = [UIFont systemFontOfSize:14.0];
self.cellDateLabel.textColor = [UIColor grayColor];
self.cellDateLabel.backgroundColor = [UIColor clearColor];
self.cellDateLabel.numberOfLines = 0;
self.cellDateLabel.lineBreakMode = NSLineBreakByWordWrapping;
CGRect labelFrameN = self.cellDateLabel.frame;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer]) {
NSDictionary *stringAttributes = [NSDictionary dictionaryWithObject:self.cellDateLabel.font forKey: NSFontAttributeName];
labelFrameN.size = [self.cellDateLabel.text boundingRectWithSize:CGSizeMake(self.cellDateLabel.frame.size.width, CGFLOAT_MAX)
options:NSStringDrawingTruncatesLastVisibleLine|NSStringDrawingUsesLineFragmentOrigin
attributes:stringAttributes context:nil].size;
}else{
labelFrameN.size = [self.cellDateLabel.text sizeWithFont:self.cellDateLabel.font
constrainedToSize:CGSizeMake(self.cellDateLabel.frame.size.width, CGFLOAT_MAX)
lineBreakMode:self.cellDateLabel.lineBreakMode];
}
#pragma clang diagnostic pop
self.cellDateLabel.frame = labelFrameN;
[cell.contentView addSubview:self.cellDateLabel];
UIImageView *icon = [[UIImageView alloc]initWithFrame:CGRectMake(10.0f, self.cellDateLabel.frame.size.height + 10.0f,50.0f, 50.0f)];
self.imageView = icon;
self.imageView.image = [UIImage imageNamed:@"01_login_userdefaultavatar@2x.png"];
self.imageView.backgroundColor = [UIColor clearColor];
if (self.headImagesArray) {
[self.headImagesArray insertObject:self.imageView atIndex:indexPath.row];
}
[cell.contentView addSubview:[self.headImagesArray objectAtIndex:indexPath.row]];
[icon release];
//the content bg image
UIImageView *bgimageView = [[UIImageView alloc]initWithFrame:CGRectMake(65.0f, self.cellDateLabel.frame.size.height + 10.0f,cell.frame.size.width/3*2, 50.0f)];
self.messageContentbgImageView = bgimageView;
self.messageContentbgImageView.image = [UIImage imageNamed:@"04_message_messagebubble_gray@2x.png"];
self.messageContentbgImageView.backgroundColor = [UIColor clearColor];
[cell.contentView addSubview:self.messageContentbgImageView];
[bgimageView release];
//content label
NSString *contentValue = ((MessageDetailRecord *)[self.entriesArray objectAtIndex:indexPath.row]).content;
CGFloat width = 0.0f;
CGSize orignalSize;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer]){
orignalSize = [contentValue sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20.0f]}];
width = orignalSize.width;
}else{
width = [contentValue sizeWithFont:[UIFont systemFontOfSize:20.0f ]].width;
}
#pragma clang diagnostic pop
//set the most large width
if (width > cell.frame.size.width - 90.0f) {
width = cell.frame.size.width - 90.0f;
}
CGRect labelFrameContent;
if ([GeneralInfo getDeviceSystemVer]) {
UITextView *content = [[UITextView alloc]initWithFrame:CGRectMake(0.0f, 0.0f, width, 0.0f)];
self.messageContentLabel = content;
[content release];
self.messageContentLabel.font = [UIFont systemFontOfSize:16.0f];
self.messageContentLabel.backgroundColor = [UIColor clearColor];
self.messageContentLabel.scrollEnabled = NO;
self.messageContentLabel.userInteractionEnabled = NO;
self.messageContentLabel.backgroundColor = [UIColor colorWithRed:241/255.0f green:241/255.0f blue:241/255.0f alpha:1.0];
self.messageContentLabel.text = contentValue;
self.messageContentLabel.textColor = [UIColor grayColor];
labelFrameContent = self.messageContentLabel.frame;
}
else
{
UILabel *content = [[UILabel alloc]initWithFrame:CGRectMake(0.0f, 0.0f, width, 0.0f)];
self.messageContent = content;
[content release];
self.messageContent.font = [UIFont systemFontOfSize:20.0];
self.messageContent.backgroundColor = [UIColor clearColor];
self.messageContent.numberOfLines = 0;
self.messageContent.adjustsFontSizeToFitWidth = YES;
self.messageContent.lineBreakMode = NSLineBreakByWordWrapping;
self.messageContent.backgroundColor = [UIColor colorWithRed:241/255.0f green:241/255.0f blue:241/255.0f alpha:1.0];
labelFrameContent = self.messageContent.frame;
}
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer])
{
labelFrameContent.size = [contentValue boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX)
options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17.0f]}
context:nil].size;
}
else
{
// labelFrameContent.size = [contentValue sizeWithFont:self.messageContentLabel.font constrainedToSize:CGSizeMake(width, CGFLOAT_MAX)];
labelFrameContent.size = [contentValue sizeWithFont:self.messageContent.font
constrainedToSize:CGSizeMake(width, CGFLOAT_MAX)
lineBreakMode:self.messageContent.lineBreakMode];
}
#pragma clang diagnostic pop
/*#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([GeneralInfo getDeviceSystemVer]) {
NSDictionary *stringAttributes = [NSDictionary dictionaryWithObject:self.messageContentLabel.font forKey: NSFontAttributeName];
labelFrameContent.size = [contentValue boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX)
options:NSStringDrawingTruncatesLastVisibleLine|NSStringDrawingUsesLineFragmentOrigin
attributes:stringAttributes context:nil].size;
}else{
labelFrameContent.size = [contentValue sizeWithFont:self.messageContentLabel.font
constrainedToSize:CGSizeMake(width, CGFLOAT_MAX)
lineBreakMode:self.messageContentLabel.lineBreakMode];
}
#pragma clang diagnostic pop*/
//adjust the height
if (labelFrameContent.size.height < 50.0f) {
labelFrameContent.size.height = 50.0f;
}
labelFrameContent.size.width += 10.0f;
if (labelFrameContent.size.width > cell.frame.size.width - 90.0f) {
labelFrameContent.size.width = cell.frame.size.width - 90.0f;
}
labelFrameContent.origin.x = 70.0f;
labelFrameContent.origin.y = self.cellDateLabel.frame.size.height + 10.0f;
if ([GeneralInfo getDeviceSystemVer]){
self.messageContentLabel.frame = labelFrameContent;
[cell.contentView addSubview:self.messageContentLabel];
}else
{
self.messageContent.frame = labelFrameContent;
[cell.contentView addSubview:self.messageContent];
}
if (![GeneralInfo getDeviceSystemVer]){
UILabel *innerlabel = [[UILabel alloc]initWithFrame:CGRectMake(5.0f, 0.0f, self.messageContent.frame.size.width - 10.0f, self.messageContent.frame.size.height)];
innerlabel.textAlignment = NSTextAlignmentLeft;
innerlabel.font = [UIFont systemFontOfSize:16.0];
innerlabel.textColor = [UIColor grayColor];
innerlabel.backgroundColor = [UIColor clearColor];
innerlabel.text = contentValue;
innerlabel.numberOfLines = 0;
innerlabel.adjustsFontSizeToFitWidth = YES;
innerlabel.lineBreakMode = NSLineBreakByWordWrapping;
innerlabel.backgroundColor = [UIColor colorWithRed:241/255.0f green:241/255.0f blue:241/255.0f alpha:1.0];
self.innerLabel = innerlabel;
[self.messageContent addSubview:innerlabel];
[innerlabel release];
}
//then the image should first check the type
NSString *type = ((MessageDetailRecord *)[self.entriesArray objectAtIndex:indexPath.row]).currentMessageType;
if ([type isEqualToString:@"self"])
{
//then readjust the frame
((UIImageView *)[self.headImagesArray objectAtIndex:indexPath.row]).frame = CGRectMake(cell.frame.size.width - 50.0f, self.cellDateLabel.frame.size.height + 10.0f, 40.0f, 40.0f);
self.imageView.frame = CGRectMake(cell.frame.size.width - 60.0f, self.cellDateLabel.frame.size.height + 10.0f, 50.0f, 50.0f);
self.messageContentbgImageView.image = [UIImage imageNamed:@"04_message_messagebubble_blue@2x.png"];
self.messageContentbgImageView.frame = CGRectMake(cell.frame.size.width - 65.0f - cell.frame.size.width/3*2, self.cellDateLabel.frame.size.height + 10.0f, cell.frame.size.width/3*2, 50.0f);
if ([GeneralInfo getDeviceSystemVer]){
self.messageContentLabel.backgroundColor = [UIColor colorWithRed:236/255.0f green:247/255.0f blue:253/255.0f alpha:1.0];
self.messageContentLabel.frame = CGRectMake(cell.frame.size.width - labelFrameContent.size.width - 70.0f, self.cellDateLabel.frame.size.height + 10.0f, labelFrameContent.size.width, labelFrameContent.size.height);
}else
{
self.messageContent.backgroundColor = [UIColor colorWithRed:236/255.0f green:247/255.0f blue:253/255.0f alpha:1.0];
self.messageContent.frame = CGRectMake(cell.frame.size.width - labelFrameContent.size.width - 70.0f, self.cellDateLabel.frame.size.height + 10.0f, labelFrameContent.size.width, labelFrameContent.size.height);
self.innerLabel.backgroundColor = [UIColor colorWithRed:236/255.0f green:247/255.0f blue:253/255.0f alpha:1.0];
}
}
if ([GeneralInfo getDeviceSystemVer]){
cellFrame.size.height = self.cellDateLabel.frame.size.height + self.messageContentLabel.frame.size.height + 20.0f;
}else
{
cellFrame.size.height = self.cellDateLabel.frame.size.height + self.messageContent.frame.size.height + 20.0f;
}
[cell setFrame:cellFrame];
self.record = [self.entriesArray objectAtIndex:indexPath.row];
if(!self.record.appIcon) {
if (self.localTableView.dragging == NO && self.localTableView.decelerating == NO)
{
//if has the valid image url then should add to the downloader list
NSString *startURL = self.record.friendHeadImageUrl;
NSLog(@"the starturl is %@",startURL);
if (startURL &&
(NSNull *)startURL != [NSNull null] &&
[startURL length] > 0) {
NSString *endURL = [NSURL URLWithString:startURL];
if (endURL) {
[self startIconDownload:self.record forIndexPath:indexPath];
}
}
}
}else{
//should add the new bg image
((UIImageView *)[self.headImagesArray objectAtIndex:indexPath.row]).image = [UIImage imageNamed:@"friend_head_image_bg"];
UIImageView *tmp = [[UIImageView alloc]initWithFrame:CGRectMake(5.0f, 5.0f, 40.0f, 40.0f)];
tmp.image = self.record.appIcon;
[tmp setContentMode:UIViewContentModeScaleAspectFit];
[((UIImageView *)[self.headImagesArray objectAtIndex:indexPath.row]) addSubview:tmp];
[tmp release];
}
}
return cell;
}
使用uilabel重新自调整高度后显示横线和竖线问题的更多相关文章
- javascript超过容器后显示省略号效果(兼容一行或者多行)
javascript超过容器后显示省略号效果 在实际的项目中,由于文字内容的长度不确定性和页面布局的固定性,难免会出现文字内容超过div(或其他标签,下同)区域的情况,此时比较好的做法就是 ...
- css强制换行显示省略号之显示两行后显示省略号
1,首先来一个固定宽度,在一行显示,超出隐藏,显示省略号的样式 display:block; white-space:nowrap; overflow:hidden; text-overflow:el ...
- Advanced Office Password Recovery安装后显示是英文版的
一些才开始接触Advanced Office Password Recovery(即AOPR)的朋友,在安装Advanced Office Password Recovery的时候可能发现Advanc ...
- 微信支付 发布后显示 System:access_denied
微信支付发布后显示 System:access_denied (android)或 System:not_allow(IOS) 我们项目用的是.NET MVC3 授权目录是:http://mynetd ...
- JavaScript学习笔记-元素在滚动条滑动一定高度后自动置顶
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...
- 解决mysql无法插入中文数据及插入后显示乱码的问题
(1)废话不多说就是使用mysql数据库的时候无法输入中文,可以输入中文后显示的又是乱码!! (2开始解决问题: 第一步:找到安装mysql的目录找到 my.ini 文件: 第二步:使用记事本打开my ...
- [转]装完CentOS后,重新开机启动后显示: Initial setup of CentOS Linux 7 (core)
转:装完Centos7提示Initial setup of CentOS Linux 7 (core) 在用U盘装完CentOS后,重新开机启动后显示: Initial setup of Cent ...
- 装完RHEL7后,重新开机启动后显示:Initial setup of CentOS Linux 7 (core) 提示license报错
装完RHEL7后,重新开机启动后显示: 1) [x] Creat user 2) [!] License information (no user will be created) (license ...
- AngularJS 表单提交后显示验证信息与失焦后显示验证信息
虽然说AngularJS的实时表单验证非常有用,非常高效方便,但是当用户还没有完成输入时便弹出一个错误提示,这种体验是非常糟糕的. 正常的表单验证逻辑应该是在用户提交表单后或完成当前字段中的输入后,再 ...
随机推荐
- STL 之 vector的应用
关于vector vector是C++提供的一个容器,它是一个能够存放任意类型的动态数组,可以随时增加和压缩数据. 使用vector时需要注意以下几点: 1. 如果要表示的向量长度较长(需要为向量内部 ...
- RabbitMQ 初体验
概述 RabbitMQ是一款消息队列中间件.他提供了几乎覆盖所有语言的SDK与文档,简直强大的不的了.要详细的去了解学习RabbitMQ,我建议还是看官方文档吧.http://www.rabbitmq ...
- vue2.0的基本特性
本文目前总结的特性如下1.侦听属性和计算属性2.class的绑定3.条件渲染时的注意事项4.v-if和v-for同时使用的注意事项5.插槽6.ref,父组件调用子组件的另一种方式7.<keep- ...
- verilog disable 用法 (易错!)
disable语句可以退出任何循环,能够终止任何begin..end块的执行,用于仿真验证中. 例如 begin:one ;i<;i=i+) begin:two ) disable one; / ...
- 【curl】【php】curl报错,错误代码77,CURLE_SSL_CACERT_BADFILE (77)解决方法
CURLE_SSL_CACERT_BADFILE (77) - 读取 SSL CA 证书时遇到问题(可能是路径错误或访问权限问题) 在微信接口相关开发时容易出现此问题 这一般是因为服务更新了相关的软件 ...
- python爬虫基础04-网页解析库xpath
更简单高效的HTML数据提取-Xpath 本文地址:https://www.jianshu.com/p/90e4b83575e2 XPath 是一门在 XML 文档中查找信息的语言.XPath 用于在 ...
- Python模块(一)(常用模块)
1. 简单了解模块 写的每一个py文件都是一个模块. 还有一些我们一直在使用的模块 buildins 内置模块. print, input random 主要是和随机相关的内容 random() ...
- GIL 线程/进程池 同步异步
GIL 什么是GIL 全局解释器锁,本质是一把互斥锁,是加在cpython解释器上的一把锁, 同一个进程内的所有线程需要先抢到GIL锁,才能执行python代码 为什么要有GIL cpython解释器 ...
- 哈夫曼树:HDU5884-Sort(队列、哈夫曼树)
Sort Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) 题目链接:http://ac ...
- python基础学习笔记——time模块
time模块 time翻译过来就是时间,有我们其实在之前编程的时候有用到过. #常用方法 1.time.sleep(secs) (线程)推迟指定的时间运行.单位为秒. 2.time.time() 获取 ...