Swift equivalent to Objective-C FourCharCode single quote literals (e.g. 'TEXT')

后端 未结 7 2248
青春惊慌失措
青春惊慌失措 2021-02-20 13:05

I am trying replicate some Objective C cocoa in Swift. All is good until I come across the following:

// Set a new type and creator:
unsigned long type = \'TEXT\         


        
7条回答
  •  抹茶落季
    2021-02-20 13:39

    Swift 5 Update:

    extension String {
        func osType() -> OSType {
            return OSType(
                data(using: .macOSRoman)?
                    .withUnsafeBytes {
                        $0.reduce(into: UInt(0)) { $0 = $0 << 8 + UInt($1) }
                    } ?? 0
            )
        }
    }
    

提交回复
热议问题