Documentation Archive Developer
Search

Accounts Changes

Accounts

ACAccount.h
DeclarationDesignated Initializer
From
- (id)initWithAccountType:(ACAccountType *)type
--
To
- (instancetype)initWithAccountType:(ACAccountType *)type
yes

ACAccountCredential.h
Declaration
From
- (id)initWithOAuth2Token:(NSString *)token refreshToken:(NSString *)refreshToken expiryDate:(NSDate *)expiryDate
To
- (instancetype)initWithOAuth2Token:(NSString *)token refreshToken:(NSString *)refreshToken expiryDate:(NSDate *)expiryDate

Declaration
From
- (id)initWithOAuthToken:(NSString *)token tokenSecret:(NSString *)secret
To
- (instancetype)initWithOAuthToken:(NSString *)token tokenSecret:(NSString *)secret

Declaration
From
@property(copy, atomic) NSString *oauthToken
To
@property(copy, nonatomic) NSString *oauthToken

ACAccountType.h
Declaration
From
@property(readonly, atomic) BOOL accessGranted
To
@property(readonly, nonatomic) BOOL accessGranted

Declaration
From
@property(readonly, atomic) NSString *accountTypeDescription
To
@property(readonly, nonatomic) NSString *accountTypeDescription

Declaration
From
@property(readonly, atomic) NSString *identifier
To
@property(readonly, nonatomic) NSString *identifier