티스토리 뷰
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
서드파티의 네이티브용 SDK로 만든 컴포넌트를 React Native 에서 사용하고 싶어서 조사해봤습니다. 공식은 영어를 읽을 수 있다고 해도 설명이 부족하거나 쓸데없는 내용이 많아서 이해하기 힘들다고 생각했습니다.
저는 안드로이드 자바 초심자이기 때문에 나쁘게 생각하지 말아주세요. 프로퍼티 설정이나, 타 API 사용은이런저런 설정이 필요합니다.
Android편은 이쪽에서 볼수 있습니다.
공식 문서
https://facebook.github.io/react-native/docs/native-components-ios.html
가장 심플한 구현 코드
- RCTViewManager를 계승한 헤더파일(.h)과 구현파일 (.m)을 작성합니다.。[XXXX]Manager라고 이름을 지어야 합니다. XXXX가 JS에서 호출할 이름이됩니다.
- 구현코드에서 RCT_EXPORT_MODULE() 를 호출합니다. 。view 메소드에서 Native 의 View를 반환합니다.
- Manager클래스에서 지정한 이름을 사용해서 JavaScript에서 호출한다.
ExampleManager.h#import <React/RCTViewManager.h>
#import <UIKit/UIKit.h>
@interface ExampleManager : RCTViewManager
@end
ExampleManager.m#import "ExampleManager.h"
@implementation ExampleManager
// This line allows ReactNative to access this component from JS
RCT_EXPORT_MODULE();
- (UIView *)view
{
return [[UIView alloc] init];
}
@end
App.jsimport React from 'react';
import { requireNativeComponent } from 'react-native';
const Example = requireNativeComponent('Example', null);
export default class App extends React.Component {
render() {
return (
<Example />
);
}
});
ExampleManager.h
#import <React/RCTViewManager.h>
#import <UIKit/UIKit.h>
@interface ExampleManager : RCTViewManager
@end
ExampleManager.m
#import "ExampleManager.h"
@implementation ExampleManager
// This line allows ReactNative to access this component from JS
RCT_EXPORT_MODULE();
- (UIView *)view
{
return [[UIView alloc] init];
}
@end
App.js
import React from 'react';
import { requireNativeComponent } from 'react-native';
const Example = requireNativeComponent('Example', null);
export default class App extends React.Component {
render() {
return (
<Example />
);
}
});
'프로그래밍 > REACT NATIVE' 카테고리의 다른 글
[번역] React Native MobX 특집 1편 : 상태관리를 redux에서 mobX로 바꾼 이유 (0) | 2017.12.07 |
---|---|
[번역] React Native LifeCycle 한번에 정리하기! (0) | 2017.12.06 |
[번역] React Native에서 Native UI Component를 사용해보자(Android편) (0) | 2017.12.05 |
리액트 네이티브 프로젝트를 시작해보자. (2) (0) | 2017.09.26 |
리액트 네이티브 프로젝트를 시작해보자. (1) (0) | 2017.09.25 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 덴뿌라
- 야키니쿠
- 우래옥
- 리액트네이티브
- 리액트
- 리액트 네이티브
- observable
- Qiita
- 청계천 맛집
- 도쿄
- 도쿄맛집
- android
- 안드로이드
- 쿠로키 하루
- 일드
- mobx
- 여행
- react native
- 평양면옥
- 을지면옥
- 편육
- 평양냉면
- 수요미식회
- 브이로그
- 일본여행
- 을지로3가
- 필동면옥
- Redux
- 맛집
- 중쇄를찍자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함