I'm trying to access the ContactStore
of MacOS
App, did the following implementation
public void Contacts()
{
//Starting
var store = new CNContactStore();
store.RequestAccess(CNEntityType.Contacts, async (bool granted, NSError error) =>
{
if (granted)
{
//Query things
}
});
}
The thing is that the Authorize screen
never popup, and the Permission
always say denied.
If I go to settings to remove that record, the app is not there.
Can someone please point me to the light?