AdobeImageEditorInAppPurchaseManager Protocol Reference
Conforms to | NSObject |
Declared in | AdobeUXImageEditorViewController+InAppPurchase.h |
Overview
This protocol is implemented by the object returned by [AdobeUXImageEditorViewController inAppPurchaseManager]. You should call these methods to activate and deactivate in-app purchase.
Tasks
-
delegate
property required method -
observingTransactions
property required method -
– startObservingTransactions
required method -
– stopObservingTransactions
required method
Properties
delegate
Deprecated.
@property (nonatomic, weak, nullable) id<AdobeImageEditorInAppPurchaseManagerDelegate> delegate
Discussion
Deprecated.
A delegate for handling in-app purchase-related callbacks, including mapping internal product identifiers to developer-provided identifiers registered in iTunes Connect.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.h
observingTransactions
Indicates whether manager is observing transactions.
@property (nonatomic, assign, readonly, getter=isObservingTransactions) BOOL observingTransactions
Return Value
YES if the in-app purchase manager is observing transactions (in-app purchase is enabled), NO otherwise.
Discussion
Indicates whether manager is observing transactions.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.h
Instance Methods
startObservingTransactions
Call this method to start observing transactions. After calling this method, isObservingTransactions will return YES.
- (void)startObservingTransactions
Discussion
Call this method to start observing transactions. After calling this method, isObservingTransactions will return YES.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.h
stopObservingTransactions
Call this method to stop observing transactions. After calling this method, isObservingTransactions will return NO.
- (void)stopObservingTransactions
Discussion
Call this method to stop observing transactions. After calling this method, isObservingTransactions will return NO.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.h