• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - react 原生渲染原生自定义 View

[复制链接]
菜鸟教程小白 发表于 2022-12-13 13:37:18 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我关注 this doc但真的不明白如何在js端呈现我的客户 View 。

我使用 Storyboard生成一个简单的 View 并将其分配给我的 CustomView 类,该类继承了 UIView

enter image description here

然后我像下面这样写 MyCustomViewManager.m

#import "RCTViewManager.h"
#import "CustomView.h"

@interface MyCustomViewManager : RCTViewManager
@end

@implementation MyCustomViewManager

RCT_EXPORT_MODULE()

- (UIView *)view
{
  return [[CustomView alloc] init];
}

@end

最后我在下面写了js端文件index.ios.js

import React from 'react-native';

const {AppRegistry, View, requireNativeComponent,} = React;

class Demo extends React.Component {
    constructor(){
      super();
    }

    var CustomView = requireNativeComponent('CustomView', null);

    render() {
      return (
        <View>
          <CustomView></CustomView>
        </View>
      );
    }
}

AppRegistry.registerComponent('Demo', () => Demo);

也许我做错了什么,我不明白官方文档关于以下代码的意思 module.exports = requireNativeComponent('RCTMap', null);

如何在 requireNativeComponent 方法中表示原生端 CustimView?能给我看看代码吗,谢谢..



Best Answer-推荐答案


此行表示您纯粹导出 RCTMap 而不处理任何自定义属性

module.exports = requireNativeComponent('RCTMap', null);

正如 React Native Docs 所说,

import { requireNativeComponent } from 'react-native';

// requireNativeComponent automatically resolves this to "RCTMapManager"
module.exports = requireNativeComponent('RCTMap', null);

so requireNativeComponent 接收两个参数,第一个参数是您要从之前的桥接过程中导入的组件的名称,第二个参数是处理 native 组件的类,这是用于操作自定义组件中的属性和一些逻辑,就像那样

// MapView.js
import React from 'react';
import { requireNativeComponent } from 'react-native';

class MapView extends React.Component {
   render() {
    return <RCTMap {...this.props} />;
  }
}

MapView.propTypes = {
  /**
   * When this property is set to `true` and a valid camera is associated
   * with the map, the camera’s pitch angle is used to tilt the plane
   * of the map. When this property is set to `false`, the camera’s pitch
   * angle is ignored and the map is always displayed as if the user
   * is looking straight down onto it.
   */
  pitchEnabled: React.PropTypes.bool,
};

var RCTMap = requireNativeComponent('RCTMap', MapView);

module.exports = MapView;

希望这对关心它的人有用

请查看React Native Docs

关于ios - react 原生渲染原生自定义 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34815679/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap