iphone – ui_orientation,Apple的另一颗无证珍珠

iphone – ui_orientation,Apple的另一颗无证珍珠,第1张

概述我在WWDC视频上看到了这个ui_orientation糖果,用于此背景 UIImage *finalImage = [[UIImage alloc] initWithCGImage:cgimg scale:2.0f orientation:ui_orientation([displayImage properties])]; 显然它会正确地读取CCIm @H_419_0@ @H_419_0@ 我在WWDC视频上看到了这个ui_orIEntation糖果,用于此背景

UIImage *finalimage = [[UIImage alloc] initWithCGImage:cgimg                      scale:2.0f orIEntation:ui_orIEntation([displayImage propertIEs])];

显然它会正确地读取CCImage的方向来创建UIImage,但在我的代码中使用它会产生这个错误:函数’ui_orIEntation’的隐式声明在C99中无效

你们知道我应该在源代码中包含什么标题来使这个功能起作用吗?

谢谢.

注意:WWDC 2012 – 第25课,25’16“……创建UIImage时

解决方法 这是来自会话422,他们在那里提供代码

Convert the orIEntation property to UIImageOrIEntation:

UIImageOrIEntation ui_orIEntation (NSDictionary* props){    int o = [[props valueForKey:(ID)kCGImagePropertyOrIEntation] intValue];    UIImageOrIEntation map[] = {        UIImageOrIEntationUp,UIImageOrIEntationUp,UIImageOrIEntationUpMirrored,UIImageOrIEntationDown,UIImageOrIEntationDownMirrored,UIImageOrIEntationleftMirrored,UIImageOrIEntationRight,UIImageOrIEntationRightmirrored,UIImageOrIEntationleft,};    return map[o];}

这里也是一个方便的提示:从所有WWDC会话中下载所有pdf并将它们保存在硬盘上.他们不占用太多空间.这样,当您想要查找关于CATransaction的会话或(如此处)组成功能时,您可以使用Spotlight查找pdf,其中会话编号作为其标题.

@H_419_0@ 总结

以上是内存溢出为你收集整理的iphone – ui_orientation,Apple的另一颗无证珍珠全部内容,希望文章能够帮你解决iphone – ui_orientation,Apple的另一颗无证珍珠所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1081083.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存