作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在 session 506 的 WWDC 2017 视频中。第一个演示中有一段代码如下所示:
let exifOrientation = self.exifOrientationFromDeviceOrientation()
self 的使用。表明它应该是来自 ViewController 的属性。鉴于此 exifOrientationFromDeviceOrientation() 方法在 UIViewController 类中不存在,我认为 ViewController 符合授予该功能的协议(protocol)。有人可以指出是哪个协议(protocol)吗?
最佳答案
我强烈建议你看看https://github.com/yulingtianxia/Core-ML-Sample/blob/master/CoreMLSample/ViewController.swift这是 Core-ML-Sample 的一部分GitHub 上的项目。
var exifOrientationFromDeviceOrientation: Int32 {
let exifOrientation: DeviceOrientation
enum DeviceOrientation: Int32 {
case top0ColLeft = 1
case top0ColRight = 2
case bottom0ColRight = 3
case bottom0ColLeft = 4
case left0ColTop = 5
case right0ColTop = 6
case right0ColBottom = 7
case left0ColBottom = 8
}
switch UIDevice.current.orientation {
case .portraitUpsideDown:
exifOrientation = .left0ColBottom
case .landscapeLeft:
exifOrientation = .top0ColLeft
case .landscapeRight:
exifOrientation = .bottom0ColRight
default:
exifOrientation = .right0ColTop
}
return exifOrientation.rawValue
}
干杯!
关于ios - 关于 Apple 的 WWDC 2017 Session 506 中的代码摘录 - exifOrientationFromDeviceOrientation() 在哪里定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46413629/
在 session 506 的 WWDC 2017 视频中。第一个演示中有一段代码如下所示: let exifOrientation = self.exifOrientationFromDeviceO
我是一名优秀的程序员,十分优秀!