49 lines
1.4 KiB
Objective-C
49 lines
1.4 KiB
Objective-C
//
|
|
// NixShareExtension.m
|
|
// NixShareExtension
|
|
//
|
|
// Created by Haroon Shahid on 30/4/2018.
|
|
// Copyright © 2018 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ReactNativeShareExtension.h"
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTLog.h>
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <Foundation/Foundation.h>
|
|
//#import "ReactNativeShareExtension.h"
|
|
|
|
|
|
@interface NixShareExtension : ReactNativeShareExtension
|
|
@end
|
|
|
|
@implementation NixShareExtension
|
|
|
|
RCT_EXPORT_MODULE();
|
|
+ (BOOL)requiresMainQueueSetup {
|
|
return YES;
|
|
}
|
|
- (UIView*) shareView {
|
|
NSURL *jsCodeLocation;
|
|
|
|
#ifdef DEBUG
|
|
// jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];
|
|
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
#else
|
|
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
#endif
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
|
|
moduleName:@"NixShareExtension"
|
|
initialProperties:nil
|
|
launchOptions:nil];
|
|
rootView.backgroundColor = nil;
|
|
return rootView;
|
|
}
|
|
|
|
@end
|