我正在开发一个基于产品的应用程序,其中显示产品名称以及价格协议或法令。
截至目前,根据我的要求,我将UIImage作为子视图插入UILabel。但是每当我需要计算产品名称长度时,我就会定义UIImage的x位置并反复添加它。产品名称大小可变。
根本没有时候图像的x位置无法正确设置,因此它与UILabel上的文本重叠。我遇到了这个问题。
以下是我对这种要求的努力。可能应该有另一种方法来做这些事情,但我不知道。我可以申请其他任何替代方案吗?
int level=3;
NSString *product=@"Pea Price:";
UIImageView *imgView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 20, 25)];
[imgView setImage:[UIImage imageNamed:@"up.png"]];
CGRect rect=[imgView frame];
UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(20, 70, 200, 30)];
label.backgroundColor=[UIColor whiteColor];
CGSize size=[product sizeWithFont:label.font constrainedToSize:CGSizeMake(MAXFLOAT, 30) lineBreakMode:NSLineBreakByTruncatingTail];
rect.origin.x=size.width-5;
[imgView setFrame:rect];
label.text=[NSString stringWithFormat:@"%@ (%i%%)",product,level];
[label addSubview:imgView];
[self.view addSubview:label];
答案 0 :(得分:5)
你可以这样使用
label.text=[NSString stringWithFormat:@"%@ ⬆\uFE0E (%i%%)",product,level];
label.text=[NSString stringWithFormat:@"%@ ⬇\uFE0E (%i%%)",product,level];
只需将此箭头图像复制并粘贴到NSString。
更改标签的foreColor将更改箭头颜色。
从此处获取要粘贴的其他图像
箭头 - http://www.alanwood.net/unicode/miscellaneous_symbols_and_arrows.html
循环数字 - http://www.alanwood.net/unicode/enclosed_alphanumerics.html
图片 - http://www.alanwood.net/unicode/miscellaneous_symbols.html
微笑 - http://www.alanwood.net/unicode/emoticons.html
Miscallaneous - http://www.alanwood.net/unicode/miscellaneous-symbols-and-pictographs.html
答案 1 :(得分:1)
您可以使用带有NSAttributedStrings的箭头(⬈和⬊)的Unicode字符作为颜色,甚至可以使用Emojis:↗和↘(在模拟器中查看此页面以查看它们)。
答案 2 :(得分:-1)
实现此目的的最简单方法是使用UIWebView
并将图像作为HTML标记插入。但在性能方面,它并不好。