gpt4 book ai didi

ios - DT AttributedText ContentView 绘制边框

转载 作者:行者123 更新时间:2023-11-29 03:29:49 24 4
gpt4 key购买 nike

我发现绘制边框是在 DTCoreText 中实现的。但是找不到任何关于如何做到这一点的资源。我收到一些 html 文本,对其进行修改,然后使用 DTAttributedTextContentView 显示它。所以我的问题是,我能以某种方式添加边框吗?如果是,也许有人有一个例子或知道在哪里可以找到如何做到这一点?提前致谢。

最佳答案

我没有找到任何解决方案,所以我做了一个解决方法。如果有人会寻找这个:我创建了 DTCSSStylesheet,并为带有填充的 html 标签指定了一个 css。然后我用 DTCoreTextContentViewDelegate 方法画了一个边框。

- (BOOL)attributedTextContentView:(DTAttributedTextContentView *)attributedTextContentView shouldDrawBackgroundForTextBlock:(DTTextBlock *)textBlock frame:(CGRect)frame context:(CGContextRef)context forLayoutFrame:(DTCoreTextLayoutFrame *)layoutFrame
{
UIBezierPath *roundedFrame = [UIBezierPath bezierPathWithRoundedRect:frame cornerRadius:5];

CGColorRef color = [textBlock.backgroundColor CGColor];
if (color)
{
CGContextSetFillColorWithColor(context, color);
}
CGContextAddPath(context, [roundedFrame CGPath]);
CGContextFillPath(context);

CGContextAddPath(context, [roundedFrame CGPath]);
CGContextSetRGBStrokeColor(context, 0, 0, 0, 1);
CGContextStrokePath(context);

return NO; // draw standard background
}

关于ios - DT AttributedText ContentView 绘制边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19956605/

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