我正在编写一个包含 RSS 阅读器的应用程序。RSS 阅读器正在下载标题、描述和图像。我放置在与描述相同的单元格中的附件视图中的图像。描述放置在文本标签中,并根据图像完美调整大小。但我希望图像显示在左侧。但是当我从附件视图中删除图像并将其移动到左侧的图像时,Textlabel 不会调整大小。
我如何调整文本标签的大小。
CGRect f = cell.textLabel.frame;
[cell.textLabel setFrame: CGRectMake(f.origin.x-20, f.origin.y, f.size.width-50, f.size.height)];
cell.textLabel.font = [UIFont systemFontOfSize:11];
cell.textLabel.numberOfLines =3;
cell.textLabel.textColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.7];
cell.backgroundColor = [UIColor clearColor];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
我试图用 setframe 函数调整它的大小,但这不起作用。
希望你们中的一些人可以将我推向正确的方向。
提前致谢