Commit 91cc3c8 1 parent 19ab18e commit 91cc3c8 Copy full SHA for 91cc3c8
File tree 3 files changed +11
-7
lines changed
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 26
26
*/
27
27
@interface RMStoreUserDefaultsPersistence : NSObject <RMStoreTransactionPersistor>
28
28
29
+ /* * Returns the user defaults used to store transaction data
30
+ */
31
+ - (NSUserDefaults *)userDefaults ;
32
+
29
33
/* * Remove all transactions from user defaults.
30
34
*/
31
35
- (void )removeTransactions ;
78
82
*/
79
83
- (RMStoreTransaction*)transactionWithData : (NSData *)data ;
80
84
81
- @end
85
+ @end
Original file line number Diff line number Diff line change @@ -108,16 +108,16 @@ - (NSArray*)rm_transactions {
108
108
109
109
@interface RMProductsRequestDelegate : NSObject <SKProductsRequestDelegate>
110
110
111
- @property (nonatomic , strong ) RMSKProductsRequestSuccessBlock successBlock;
112
- @property (nonatomic , strong ) RMSKProductsRequestFailureBlock failureBlock;
111
+ @property (nonatomic , copy ) RMSKProductsRequestSuccessBlock successBlock;
112
+ @property (nonatomic , copy ) RMSKProductsRequestFailureBlock failureBlock;
113
113
@property (nonatomic , weak ) RMStore *store;
114
114
115
115
@end
116
116
117
117
@interface RMAddPaymentParameters : NSObject
118
118
119
- @property (nonatomic , strong ) RMSKPaymentTransactionSuccessBlock successBlock;
120
- @property (nonatomic , strong ) RMSKPaymentTransactionFailureBlock failureBlock;
119
+ @property (nonatomic , copy ) RMSKPaymentTransactionSuccessBlock successBlock;
120
+ @property (nonatomic , copy ) RMSKPaymentTransactionFailureBlock failureBlock;
121
121
122
122
@end
123
123
Original file line number Diff line number Diff line change 25
25
26
26
@interface RMProductsRequestDelegate : NSObject <SKProductsRequestDelegate>
27
27
28
- @property (nonatomic , strong ) RMSKProductsRequestSuccessBlock successBlock;
29
- @property (nonatomic , strong ) RMSKProductsRequestFailureBlock failureBlock;
28
+ @property (nonatomic , copy ) RMSKProductsRequestSuccessBlock successBlock;
29
+ @property (nonatomic , copy ) RMSKProductsRequestFailureBlock failureBlock;
30
30
@property (nonatomic , weak ) RMStore *store;
31
31
32
32
@end
You can’t perform that action at this time.
0 commit comments