在iphone中缩放后保留标签的分辨率

发布于 2024-10-25 11:26:38 字数 351 浏览 0 评论 0原文

我在视图中有一个标签。缩放视图后,标签看起来有点模糊,分辨率丢失。如何在缩放后保留分辨率。

这是我的缩放代码

secondView.transform = CGAffineTransformIdentity;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
secondView.transform = CGAffineTransformMakeScale(2 ,2);
[UIView commitAnimations];
[self.view bringSubviewToFront:secondView];

I am having a label in a view.After scaling the view, the label looks little blurred,the resolution is lost.How to retain the resolution after scaling.

Here is my code for scaling

secondView.transform = CGAffineTransformIdentity;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
secondView.transform = CGAffineTransformMakeScale(2 ,2);
[UIView commitAnimations];
[self.view bringSubviewToFront:secondView];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不再见 2024-11-01 11:26:38

我设置标签的 ContentScaleFactor 属性以在缩放后保留标签的分辨率。

[label setContentScaleFactor:2];

I set the ContentScaleFactor property of the label to retain the resolution of the label after scaling .

[label setContentScaleFactor:2];
风轻花落早 2024-11-01 11:26:38

创建一个本身尺寸较大的标签,在将其添加到视图时使用转换缩小尺寸。
因此,在运行时,当视图放大时,标签的分辨率不会丢失。

这是其中一种做法。

谢谢

Create a label of big size itself, scale down using transformations when you add it to the view.
So at the run time when the view will scaleup the label's resolution will not be lost.

This is one of the approach.

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文