我尝试使用一种方法扩展内置的反应原生TextInput组件,以返回给定范围的文本选择矩形。我遵循了这种模式here但我坚持这一步
import React, { Component } from 'react';
import {AppRegistry, StyleSheet, Text, View, NativeModules } from 'react-native';
var TextViewManager = NativeModules.TextViewManager;
TextViewManager始终为null。有谁知道为什么或如何访问TextViewManager所以我可以调用我添加到它的方法?
我尝试以同样的方式访问其他管理员(例如WebViewManager),并且它已经成功了。看起来像TextViewManager就是一个特例。
答案 0 :(得分:0)
好的,我得到了它的工作,这是因为我在Xcode中更改了TextViewManager类别源后没有运行react-native run-ios
。我错误地认为react-native log-ios
已构建,安装和记录,但它只记录。