0

我有以下代码来调整标签的高度,但它不起作用。它显示带有.....的文本我做错了什么?

float storeAddress1YOffset=10;
float storeAddress1XWidth=scrollView.frame.size.width;
float storeAddressLabel1YHeight=15;
UILabel *storeAddressLabel=[[UILabel alloc]initWithFrame:CGRectMake(Xoffset,storeSectionHeight+ storeAddress1YOffset,storeAddress1XWidth, storeAddressLabel1YHeight) ];
storeAddressLabel.font=[UIFont fontWithName:@"GillSans" size:15.0f];
currentHeight=currentHeight + storeAddress1YOffset + storeAddressLabel1YHeight;
[storeAddressLabel setText:fullAddress];

CGRect labelFrame = storeAddressLabel.frame;
labelFrame.size = [fullAddress sizeWithFont:storeAddressLabel.font
                            constrainedToSize:CGSizeMake(storeAddressLabel.frame.size.width, CGFLOAT_MAX)
                                lineBreakMode:storeAddressLabel.lineBreakMode];
storeAddressLabel.frame = labelFrame;
4

1 回答 1

1

你的代码似乎对我有用。您没有实例化一些变量:

float Xoffset = ?;
float storeSectionHeight = ?;
float currentHeight = ?;
NSString *fullAddress = @"?";

除了您没有显示任何关于scrollView或添加storeAddressLabel到(我假设)scrollView作为子视图的详细信息。

当我使用 plain 填充这些缺失的部分时,UIView标签似乎已正确调整为 test string fullAddress。请包含更多您的代码,包括这些缺失的部分。

于 2012-10-02T00:05:22.950 回答