Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 606 Bytes

getBiologicalSex.md

File metadata and controls

27 lines (22 loc) · 606 Bytes

getBiologicalSex

Get the biological sex (gender). If the BiologicalSex read permission is missing or the user has denied it then the value will be unknown. The possible values are:

Value HKBiologicalSex
unknown HKBiologicalSexNotSet
male HKBiologicalSexMale
female HKBiologicalSexFemale
other HKBiologicalSexOther
AppleHealthKit.getBiologicalSex(null, (err: Object, results: Object) => {
  if (err) {
    return
  }
  console.log(results)
})

Example output:

{
  "value": "female"
}