Red Shift

The official Infinite Red publication for React Native design & development. We’re a fully distributed team building world-class apps for over 20 years for clients all around the world.

Follow publication

Beginner’s Guide to Using CocoaPods with React Native

Gant Laborde
Red Shift
Published in
6 min readFeb 11, 2016

--

What We’ll Be Making

Image Preview CocoaPod JTSImageViewController

Adding CocoaPods

$ gem install cocoapods
$ cd ios
$ pod init
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you’re using Swift
# use_frameworks!
target "RNImagePreview" do
pod 'JTSImageViewController'
end
$ pod install

Create a Bridge to Native

#import "RCTBridge.h"
@interface JTSImagePreview : NSObject <RCTBridgeModule>
#import "JTSImagePreview.h"
#import "RCTLog.h"
#import <JTSImageViewController.h>
@implementation JTSImagePreviewRCT_EXPORT_MODULE();RCT_EXPORT_METHOD(showImage)
{
// Here's our method's code
RCTLogInfo(@"showImage called!");
}
@end

Call Our Native Code

THERE IT IS!!!

Utilize Pod Code

// Initialize imageInfo
JTSImageInfo *imageInfo = [[JTSImageInfo alloc] init];
// Set the URL
imageInfo.imageURL = [NSURL URLWithString:url];
JTSImageViewController *imageViewer = [[JTSImageViewController alloc] initWithImageInfo:imageInfo
mode:JTSImageViewControllerMode_Image
backgroundStyle:JTSImageViewControllerBackgroundOption_None];
// Get root to show from AppDelegate
AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
UIViewController* showingController = (UIViewController*)delegate.window.rootViewController
// BEFORE React Native 0.29
//React.NativeModules.JTSImagePreview.showImage('http://i.imgur.com/sKh7Z6R.png')
// As of latest RN import differently
import { NativeModules } from 'react-native'
NativeModules.JTSImagePreview.showImage('http://i.imgur.com/sKh7Z6R.png')

Special Thanks:

About Gant Laborde

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Red Shift

The official Infinite Red publication for React Native design & development. We’re a fully distributed team building world-class apps for over 20 years for clients all around the world.

Written by Gant Laborde

Software Consultant, Adjunct Professor, Published Author, Award Winning Speaker, Mentor, Organizer and Immature Nerd :D — Lately full of React Native Tech

Responses (18)

Write a response