1

From iOS 9, the EKEvent property birthdayPersonID is deprecated.

How can I get the CNContact associated with a birthday event?

PatrickV
  • 1,090
  • 2
  • 9
  • 23

1 Answers1

1

If you try using birthdayPersonID, it will produce a warning that says:

warning: 'birthdayPersonID' is deprecated: first deprecated in iOS 9.0 - Use birthdayContactIdentifier instead

So, use birthdayContactIdentifier.

Rob
  • 415,655
  • 72
  • 787
  • 1,044