从事 iOS 开发的童鞋,应该都清楚,通过如下代码,就可以实现 NSArray 与 Array 之间的无缝转换:
let mobile = ["iPhone", "Nokia", "小米 Note"]
let mobile1 = (mobile as NSArray).objectAtIndex(1)
print(mobile1)
let animalArray = NSArray(objects: "lion", "tiger", "monkey")
var animalCount = (animalArray as Array).count
print(animalCount)
// 输出
// "Nokia"
// ["lion", "tiger", "monkey"]
而且除了数组外,字典( Dictionary )、集合( Set )、字符串( String )也是一样的道理,均可实现无缝转换。
那么问题来了,NSArray 是类类型,而 Array 是结构体类型,一个是引用类型,一个是值类型,它们是怎样实现无缝转换的呢?Cocoa Foundation 与 Core Foundation 之间转换是通过 toll-free bridging 技术实现的,那 NSArray 与 Array 之间是不是也应该有类似的桥接实现呢?
将鼠标移动到 Array 上,然后 "cmd+ 鼠标点击" ,进入到 Swift 的声明文件中,在 Array 的注释中,可以看到下面这段代码:
/// Objective-C Bridge
/// ==================
/// The main distinction between Array and the other array types is that it interoperates seamlessly and efficiently with Objective-C.
/// Array is considered bridged to Objective-C iff Element is bridged to Objective-C.
// ......
可以看出 Array 与 Objective-C 的数组之间确实存在有某种桥接技术,我们暂且称之为 "Objective-C Bridge" 桥接。那这又是如何实现的呢?
在当前文件中搜索 bridge ,会发现有这样一个协议: _ObjectiveCBridgeable 。其声明如下:
/// A Swift Array or Dictionary of types conforming to _ObjectiveCBridgeable
can be passed to Objective-C as an NSArray or NSDictionary, respectively. The elements of the resulting NSArray or NSDictionary will be the result of calling _bridgeToObjectiveC
on each element of the source container.
public protocol _ObjectiveCBridgeable {
}
即一个 Swift 数组或字典,如果其元素类型实现了 _ObjectiveCBridgeable 协议,则该数组或字典可以被转换成 Objective-C 的数组或字典。对于 _ObjectiveCBridgeable 协议,目前所能得到的文档就只有这些,也看不到它里面声明了什么属性方法。不过,可以看到这个协议是访问控制权限是 public ,也就意味着可以定义类来实现这个接口。
如果大家有兴趣的话,也可以密切关注苹果官方文档,了解更多_ObjectiveCBridgeable 协议相关内容,届时,欢迎大家补充分享。
相关文章:《Objective-C 类与 Swift 结构体的互转》 http://www.maiziedu.com/group/article/7650/
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于