iosacaccountstore

Use of undeclared identifier "ACAccountStore"


I'm trying to use the ios Account Framework. I already added the Accounts.Framework in my build phases, but I still get the error

Use of undeclared identifier "ACAccountStore"

Anyone know why? Social.Framework works fine for me.


Solution

  • Did you make sure to include the header?

    Objective-C

    #import <Accounts/Accounts.h>
    

    Swift

    import Accounts