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
-
delegateproperty required method -
observingTransactionsproperty required method -
– startObservingTransactionsrequired method -
– stopObservingTransactionsrequired method
Properties
delegate
Deprecated.
@property (nonatomic, weak, nullable) id<AdobeImageEditorInAppPurchaseManagerDelegate> delegateDiscussion
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.hobservingTransactions
Indicates whether manager is observing transactions.
@property (nonatomic, assign, readonly, getter=isObservingTransactions) BOOL observingTransactionsReturn 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.hInstance Methods
startObservingTransactions
Call this method to start observing transactions. After calling this method, isObservingTransactions will return YES.
- (void)startObservingTransactionsDiscussion
Call this method to start observing transactions. After calling this method, isObservingTransactions will return YES.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.hstopObservingTransactions
Call this method to stop observing transactions. After calling this method, isObservingTransactions will return NO.
- (void)stopObservingTransactionsDiscussion
Call this method to stop observing transactions. After calling this method, isObservingTransactions will return NO.
Declared In
AdobeUXImageEditorViewController+InAppPurchase.h