如何在 iPhone 中拉伸图像而不显得扭曲?

发布于 2024-11-04 12:57:42 字数 74 浏览 4 评论 0原文


我正在开发聊天应用程序,我想根据文本拉伸聊天气泡图像,但不知道如何做到这一点。
请就此事提出您的建议。
谢谢

I am working on chat application and i want to stretch chat bubble image as per text but not getting how to do that.
Please give your suggestion for this matter.
Thanks

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

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

发布评论

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

评论(1

以可爱出名 2024-11-11 12:57:42

看看:

http://developer.apple.com/library/ios/documentation/uikit/reference/UIImage_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006890-CH3-SW4

UIImage *image = [[UIImage imageNamed:@"chatBubble.png"] stretchableImageWithLeftCapWidth:5 topCapHeight:5];

这将创建一个边角为 5x5 的图像,该图像不会拉伸,但主体会拉伸。

Look at:

http://developer.apple.com/library/ios/documentation/uikit/reference/UIImage_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006890-CH3-SW4

UIImage *image = [[UIImage imageNamed:@"chatBubble.png"] stretchableImageWithLeftCapWidth:5 topCapHeight:5];

This will create an image with the corners 5x5 which doesn't stretch, but with a body that does.

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