Time Profiler:优化 UIImageView alloc/init 调用

发布于 2024-09-10 05:16:23 字数 249 浏览 5 评论 0原文

Time Profiler 表示此类语句会减慢我的应用程序的速度。有没有更好的方法来编写这个以便我的应用程序运行得更快?

background = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myfolder.png"] highlightedImage:[UIImage imageNamed:@"myfolderOFF.png"]]; 

谢谢

Time Profiler says that statements like these are slowing my app down. Is there a better way to write this so that my app runs faster?

background = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myfolder.png"] highlightedImage:[UIImage imageNamed:@"myfolderOFF.png"]]; 

Thanks

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

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

发布评论

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

评论(2

泡沫很甜 2024-09-17 05:16:23

我将继续用“你不能”来回答我自己的问题。

但是,如果您遇到这样的问题,您可以尝试使用 C

http://iphonedevelopment.blogspot.com/2008/04/root-of-all-evil-introduction-to.html

I'm going to go ahead and answer my own question with a "you can't."

However if you have an issue like this you COULD try optimize using C

http://iphonedevelopment.blogspot.com/2008/04/root-of-all-evil-introduction-to.html

☆獨立☆ 2024-09-17 05:16:23

我在某处读到过“imageNamed:”是邪恶的,但它并没有真正导致性能下降。大多数报告都是关于奇怪的错误和崩溃的。
尝试“imageWithContentsOfFile:”

somewhere i've read about "imageNamed:" is evil, but it causes not really performance slowdowns. there were mostly reports off odd bugs and crashes.
Try "imageWithContentsOfFile:"

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