DBAccount as a @property in iOS Dropbox Datastore API -
I am looking at the sample work app which uses the Dropbox Datastore API:
inside In other areas of the class, this account, as referred to as ... but I am unsure about how it relates to the Where is the Thank you. (If this Here the "Properties" section covers this bit here:. Work Controller. M is a
account property:
@property (nonatomic, readonly) DBAccount * account;
self.account , and I have found that it is a private method:
- (DBAccount *) account {return self.accountManager.linkedAccount; }
readonly property.
account to begin? If it is inside the above method, then I can not see anywhere that this method is called.
account is a property, so whenever you access it, Then the
-account method is called.
is not readable , then a consistent method
-setout which at any time specifies a value for the property ).
Comments
Post a Comment