gpt4 book ai didi

alignment - 垂直对齐核心文字?

转载 作者:行者123 更新时间:2023-12-04 05:34:50 24 4
gpt4 key购买 nike

如何更改CTFramesetter框架中文本的垂直对齐方式?我希望文本位于中间,而不是位于顶部。我正在使用Core Text框架。有一个段落设置可以更改水平对齐方式,但不能更改垂直对齐方式。

最佳答案

终于想通了...

CGRect boundingBox = CTFontGetBoundingBox(font);

//Get the position on the y axis
float midHeight = self.frame.size.height / 2;
midHeight -= boundingBox.size.height / 2;

CGPathAddRect(path, NULL, CGRectMake(0, midHeight, self.frame.size.width, boundingBox.size.height));

关于alignment - 垂直对齐核心文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3284326/

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