Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题与我的类似,但不包含答案。我想将 aCFIndex转换为NSInteger. 我检查了具有免费桥接的类型列表,这不是其中之一。
CFIndex
NSInteger
免费桥接的概念仅适用于 Objective-C 对象和 Core Foundation 对象。 CFIndex只是原始类型的 typedef signed long,并且NSInteger是原始类型的 typedef,long与signed long. 您可以将一种类型的值分配给另一种类型的变量。
signed long
long