Second:React native &OC混编

2018-05-13  本文已影响0人  二毛的希望

该篇文章主要分为两部分

一:集成过程

1.1首先要有个开发环境吧

具体请移步这篇搭建react native的开发环境的文章

1.2开始集成

以下过程来自React native中文网,我只是提炼了一下。毕竟字数很多。看我这个方便些。

pod 'React', :path => '../node_modules/react-native', :subspecs => [
    'Core',
    'RCTText',
    'RCTNetwork',
    'RCTWebSocket',
    'RCTActionSheet',
    'RCTAnimation',
    'RCTCameraRoll',
    'RCTGeolocation',
    'RCTNetwork',
    'RCTPushNotification',
    'RCTSettings',
    'RCTText',
    'RCTVibration',
    'RCTLinkingIOS'
  ]
向package.json文件中复制以下代码:
{
  "name": "NumberTileGame",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node node_modules/react-native/local-cli/cli.js start"
  },
  "dependencies": {
    "npm": "^6.0.1",
    "react": "15.4.1",
    "react-native": "0.39.2"
  }
}

向index.ios.js文件中写入以下内容(RN中文网的例子)
'use strict';

import React from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native';

class RNHighScores extends React.Component {
  render() {
    var contents = this.props["scores"].map(
      score => <Text key={score.name}>{score.name}:{score.value}{"\n"}</Text>
    );
    return (
      <View style={styles.container}>
        <Text style={styles.highScoresTitle}>
          2048 High Scores!
        </Text>
        <Text style={styles.scores}>    
          {contents}
        </Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#FFFFFF',
  },
  highScoresTitle: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  scores: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

// 整体js模块的名称
AppRegistry.registerComponent('RNHighScores', () => RNHighScores);

//注意:这个'RNHighScores'在oc代码中会被调用到,要保持oc代码中调用和这里的书写一致。
<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>localhost</key>
            <dict>
                <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
                <true/>
            </dict>
        </dict>
    </dict>
因为这里完全按照的是RN中文网去做。可以将一下代码放入ViewController中,放在touchesbegin中就好了。
    [super touchesBegan:touches withEvent:event];
    NSLog(@"High Score Button Pressed");
    NSURL *jsCodeLocation = [NSURL
                             URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios"];
    RCTRootView *rootView =
    [[RCTRootView alloc] initWithBundleURL : jsCodeLocation
                         moduleName        : @"RNHighScores"
                         initialProperties :
     @{
       @"scores" : @[
               @{
                   @"name" : @"Alex",
                   @"value": @"42"
                   },
               @{
                   @"name" : @"Joel",
                   @"value": @"10"
                   }
               ]
       }
                          launchOptions    : nil];
    UIViewController *vc = [[UIViewController alloc] init];
    vc.view = rootView;
    [self presentViewController:vc animated:YES completion:nil];

二:遇到的问题

2.1 cocoapods找不到头文件

solution:user header search paths 添加${SRCROOT}。

2.2 程序启动就crash,并报错image not found。

solution:这个问题并不是说图片找不到,其实是有些库找不到。只需要移除那些库就可以了。

2.3 如果出现了tcp connect failed

solution:1.请去启动服务 2.配置网络环境。详见step7

三:the end

具体配置不是很难,按照步骤走就没问题。
再次重申:本文章只是根据RN中文网步骤走了一遍,提炼了一下,方便大家看。
因为部门技术栈的原因,公司选型可能会用Weex,毕竟RN的学习成本实在太高,但是RN是一个很好的方向,我会在以后不定期更新学习进度。

上一篇 下一篇

猜你喜欢

热点阅读