使用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的实时表单验证非常有用,非常高效方便,但是当用户还没有完成输入时便弹出一个错误提示,这种体验是非常糟糕的. 正常的表单验证逻辑应该是在用户提交表单后或完成当前字段中的输入后,再 ...
随机推荐
- Verilog之delay的两种用法(inter/intra)
verilog语言中有两种延迟方式:inter-delay和intra-delay,关于inter和intra.这两个英文前缀都有“内部,之间”的意思,但又有所不同.inter表达不同事物之间,int ...
- c++ 整数读入优化
这个函数!!!! 它真的巨好用!!! 改了两天 换了两个版本的代码 都TLE了 然后尝试着在文件头加了这个替换了cin和scanf 结果意外地发现两个文件都突然能过了??? 太神奇了叭! 强烈安利! ...
- Android开发——子线程操作UI的几种方法
在Android项目中经常有碰到这样的问题,在子线程中完成耗时操作之后要更新UI,下面就自己经历的一些项目总结一下更新的方法: 在看方法之前需要了解一下Android中的消息机制. 转载请标明出处:h ...
- python红包随机生成(隔板法)
#红包生成思路#200 块钱 10个红包#0-200 的一个轴,随机取9个点,分成10段, 每一段的值表示一个红包的大小 #把输入的 money值 * 100 拿到的数值就是分, 不用再考虑单位是元的 ...
- 【LeetCode】Available Captures for Rook(车的可用捕获量)
这道题是LeetCode里的第999道题. 题目叙述: 在一个 8 x 8 的棋盘上,有一个白色车(rook).也可能有空方块,白色的象(bishop)和黑色的卒(pawn).它们分别以字符 &quo ...
- .NET重构(八):周结账单中,给报表添加参数
导读:进行完了日结报表的制作,大松一口气.不过,刚开始看着周结账单中的两个参数问题,也是愁了很久.不过,只要思想不滑坡,办法总比困难多.接下来,就写写我制作周结账单报表的过程. 一.添加参数 1,在日 ...
- Android点击按钮拨打电话
代码改变世界 Android点击按钮拨打电话 public void callPhone(String str) { Intent intent=new Intent(); intent.setAct ...
- 刷题总结——教主的魔法(bzoj3343)
题目: Description 教主最近学会了一种神奇的魔法,能够使人长高.于是他准备演示给XMYZ信息组每个英雄看.于是N个英雄们又一次聚集在了一起,这次他们排成了一列,被编号为1.2.…….N. ...
- 算法复习——凸包加旋转卡壳(poj2187)
题目: Description Bessie, Farmer John's prize cow, has just won first place in a bovine beauty contest ...
- LinkedList的构造函数有哪些
LinkedList构造函数有(两种): public LinkedList() public LinkedList(Collection<? extends E> c) /** * Co ...