Accounts Changes
Accounts
ACAccount.h
Modified -[ACAccount initWithAccountType:]
Declaration | Designated 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 |
Modified ACAccountCredential.oauthToken
Declaration | |
---|---|
From | @property(copy, atomic) NSString *oauthToken |
To | @property(copy, nonatomic) NSString *oauthToken |
ACAccountType.h
Modified ACAccountType.accessGranted
Declaration | |
---|---|
From | @property(readonly, atomic) BOOL accessGranted |
To | @property(readonly, nonatomic) BOOL accessGranted |
Modified ACAccountType.accountTypeDescription
Declaration | |
---|---|
From | @property(readonly, atomic) NSString *accountTypeDescription |
To | @property(readonly, nonatomic) NSString *accountTypeDescription |
Modified ACAccountType.identifier
Declaration | |
---|---|
From | @property(readonly, atomic) NSString *identifier |
To | @property(readonly, nonatomic) NSString *identifier |