我的应用程序要求用户输入一些细节,然后使用标签通过另一个视图显示。
由于用户可以输入可变长度的文本,而标签最初具有固定的长度和宽度,我使用如下代码来调整标签大小:
CGSize maximumLabelSize = CGSizeMake(296,9999);
CGSize expectedLabelSize = [yourString sizeWithFont:yourLabel.font
constrainedToSize:maximumLabelSize
lineBreakMode:yourLabel.lineBreakMode];
//adjust the label the the new height.
CGRect newFrame = yourLabel.frame;
newFrame.size.height = expectedLabelSize.height;
yourLabel.frame = newFrame;
这些修改的问题在于我有一个接一个的标签。因此,当我更改一个标签的长度时,所有以下标签也需要转换/移动到新位置。
有没有什么方法可以动态更改所有标签的大小和位置,同时确保最终的演示文稿与固定长度标签的情况一样好?
答案 0 :(得分:0)
int h=10; // Initial Height as you want
for(int k=0;k<[headItemArray count];k++) {
CGSize size_txt_overview1 = [[headItemArray objectAtIndex:k] sizeWithFont:[UIFont fontWithName:@"Helvetica" size:18] constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap];
UILabel *lbl_headitem = [[UILabel alloc]initWithFrame:CGRectMake(3,h, 690, size_txt_overview1.height)];// See the 'h' value
lbl_headitem.text = [headItemArray objectAtIndex:k];
[lbl_headitem setTextAlignment:UITextAlignmentLeft];
[lbl_headitem setBackgroundColor:[UIColor clearColor]];
[lbl_headitem setTag:k];
lbl_headitem.numberOfLines=0;
[lbl_headitem setTextColor:[UIColor redColor]];
[lbl_headitem setFont:[UIFont fontWithName:@"Helvetica" size:18]];
[scrollAttributes addSubview:lbl_headitem];
h = h + size_txt_overview1.height;// important
}