gpt4 book ai didi

ios - 你怎么能让 uilabel 环绕图像(如图所示)

转载 作者:技术小花猫 更新时间:2023-10-29 11:20:07 25 4
gpt4 key购买 nike

如何实现这种效果:enter image description here

也许是某种 NSAtributedString?

我想过只添加空格的 hacky 方法,但它需要根据图像的宽度动态地进行。

有什么想法吗?


注意很高兴您可以使用 UITextView 轻松地做到这一点:

https://stackoverflow.com/a/20033752/294884

这个问题是关于 UILabel 的。

最佳答案

在您的标签中添加带有文本的图像,代码如下:

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"Here is some text that is wrapping around like an image"];

NSTextAttachment *textAttachment = [[NSTextAttachment alloc] init];
textAttachment.image = [UIImage imageNamed:@"first.jpg"];

NSAttributedString *attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment];

[attributedString insertAttributedString:attrStringWithImage atIndex:0];

[_lbn setAttributedText:attributedString];

您的输出:

enter image description here

关于ios - 你怎么能让 uilabel 环绕图像(如图所示),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28082055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com