Skip to content

Commit cd350d4

Browse files
committed
fix: uncomment and properly import IterableSDK header and related Swift protocols in RNIterableAPI.mm for improved functionality
1 parent 4723230 commit cd350d4

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

ios/RNIterableAPI/RNIterableAPI.mm

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#import "RNIterableAPI.h"
2-
// #import <IterableSDK/IterableSDK.h> // umbrella (Objective-C) header
3-
4-
// // Forward-declare the Swift protocols/enum used in the Swift header.
5-
// @protocol IterableInAppDelegate;
6-
// @protocol IterableCustomActionDelegate;
7-
// @protocol IterableAuthDelegate;
8-
// @protocol IterableURLDelegate;
9-
// typedef NS_ENUM(NSInteger, InAppShowResponse) {
10-
// InAppShowResponseShow = 0,
11-
// InAppShowResponseSkip = 1, // use real cases if different; values just need to exist
12-
// };
2+
#import <IterableSDK/IterableSDK.h> // umbrella (Objective-C) header
3+
4+
// Forward-declare the Swift protocols/enum used in the Swift header.
5+
@protocol IterableInAppDelegate;
6+
@protocol IterableCustomActionDelegate;
7+
@protocol IterableAuthDelegate;
8+
@protocol IterableURLDelegate;
9+
typedef NS_ENUM(NSInteger, InAppShowResponse) {
10+
InAppShowResponseShow = 0,
11+
InAppShowResponseSkip = 1, // use real cases if different; values just need to exist
12+
};
1313

1414
#import "RNIterableAPI-Swift.h"
1515

0 commit comments

Comments
 (0)