Skip to content

Instantly share code, notes, and snippets.

@AmatsuZero
Created December 24, 2018 05:36
Show Gist options
  • Save AmatsuZero/ba71da374a678671dbf5835da91521f0 to your computer and use it in GitHub Desktop.
Save AmatsuZero/ba71da374a678671dbf5835da91521f0 to your computer and use it in GitHub Desktop.
字符串转OSType
extension String {
var fourCharCode: FourCharCode? {
guard self.count == 4 else {
return nil
}
return self.utf16.reduce(0) { $0 << 8 + FourCharCode($1) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment