oOOMIAO 2013-04-15 02:45 采纳率: 10%
浏览 2220
已采纳

苹果中非正式用法ui_orientation

我看见了一段关于ui_orientation的代码如下:

UIImage *finalImage = [[UIImage alloc] initWithCGImage:cgimg
                      scale:2.0f orientation:ui_orientation([displayImage properties])];

很明显作用是读取CCImage的方向来适当创建UIImage。但是我在代码中使用出现了错误: implicit declaration of function 'ui_orientation' is invalid in C99

不知道还要添加什么才能正常使用?
请高手帮忙。

来源:2012WWDC-lesson 510在25'16"

  • 写回答

1条回答 默认 最新

  • prettYYoyic 2013-04-15 09:24
    关注

    来自Session 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 session的全部pdf。然后保存在你的硬盘驱动器中。不会占很多空间的。这样你找哪期关于CATransaction 或者编造的函数的时候,可以使用Spotlight帮你找。有session的标题

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮