Skip to content

Instantly share code, notes, and snippets.

View vbabenkoru's full-sized avatar

Victor Babenko vbabenkoru

  • Iterable
View GitHub Profile
@vbabenkoru
vbabenkoru / IterableAppExtensions-Swift.h
Last active August 31, 2022 22:40
Objective-C compatibility header for IterableAppExtensions
// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
#ifndef ITERABLEAPPEXTENSIONS_SWIFT_H
#define ITERABLEAPPEXTENSIONS_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
@vbabenkoru
vbabenkoru / IterableSDK-Swift.h
Last active August 29, 2022 18:15
Objective-C compatibility header for Iterable SDK 6.4.7
// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
#ifndef ITERABLESDK_SWIFT_H
#define ITERABLESDK_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
@vbabenkoru
vbabenkoru / AppDelegate.h
Created August 12, 2022 00:51
Iterable RN Workaround
#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
#import <UserNotifications/UserNotifications.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate, UNUserNotificationCenterDelegate>
@property (nonatomic, strong) UIWindow *window;
@end