Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 757 Bytes

getBloodType.md

File metadata and controls

32 lines (27 loc) · 757 Bytes

getBloodType

Get the blood type. If the BloodType read permission is missing or the user has denied it then the value will be unknown. The possible values are:

Value HKBiologicalSex
unknown HKBloodTypeNotSet
A+ HKBloodTypeAPositive
A- HKBloodTypeANegative
B+ HKBloodTypeBPositive
B- HKBloodTypeBNegative
AB+ HKBloodTypeABPositive
AB- HKBloodTypeABNegative
O+ HKBloodTypeOPositive
O+ HKBloodTypeONegative
AppleHealthKit.getBloodType(null, (err: Object, results: Object) => {
  if (err) {
    return
  }
  console.log(results)
})

Example output:

{
  "value": "A-"
}