gpt4 book ai didi

ios - 如何使用 iOS7 Text Kit 将文本环绕在附件周围?

转载 作者:IT王子 更新时间:2023-10-29 08:11:00 27 4
gpt4 key购买 nike

我正在使用新的 Text Kit API 向某些属性文本添加附件:

// create an attachment for each image
NSTextAttachment* ta = [NSTextAttachment new];
ta.image = [UIImage imageNamed:@"imageName"];

// add to the attributed text string
NSAttributedString* rep = [NSAttributedString attributedStringWithAttachment:ta];
[myAttributedTextString appendAttributedString:rep];

效果很好,我可以在输出中看到我的图像。但是,我找不到任何方法来指定图像对齐方式或在图像周围环绕文本。

有什么想法吗?

注意: 文本附件不同于排除路径 - 文本附件是“模型”的一部分,即它是布局管理器对其执行文本布局的属性文本字符串的一部分。而排除路径是 View 的一部分。

最佳答案

NSTextAttachmentsNSAttributedString 视为单个字符。因此,为了调整它们的对齐方式,您必须像调整文本一样进行调整。我花了好几个小时摆弄 attachment.bounds(我永远无法正常工作)才最终弄明白。下面是一个如何水平对齐 NSTextAttachment 的示例。

#def BETWEEN_SECTION_SPACING 10  

// creates a text attachment with an image

NSTextAttachment *attachment = [[NSTextAttachment alloc] init];

attachment.image = [UIImage imageNamed:@"sample_image.jpg"];

NSMutableAttributedString *imageAttrString = [[NSAttributedString attributedStringWithAttachment:attachment] mutableCopy];



// sets the paragraph styling of the text attachment

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init] ;

[paragraphStyle setAlignment:NSTextAlignmentCenter]; // centers image horizontally

[paragraphStyle setParagraphSpacing:BETWEEN_SECTION_SPACING]; // adds some padding between the image and the following section

[imageAttrString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [imageAttrString length])];

在此之后,您可以将 imageAttrString 附加到现有的属性字符串,并可能在其后附加另一个。一个怪癖是,因为附件是一个字符,所以它没有被视为它自己的段落。为了做到这一点,您需要用 \n (换行符)将其包围。只需将这些附加到附件属性字符串的两侧即可。

希望对您有所帮助,我花了很长时间才弄明白。

关于ios - 如何使用 iOS7 Text Kit 将文本环绕在附件周围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18968820/

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