react-native-tableview 使用

众所周知,react-native 的 ListView 是使用 ScrollView 封装的,是完全没有重用机制的,iOS 配备了 UITableView,通过重用底层的 UIViews 实现了非常高性能的体验,相比较而言,ListView 的性能并没有那么好。

那么,很容易想到,我们可以自己动手将 iOS 原生的 UITableView 导出到 RN 使用。

Git 上已经有人实现了 UITableView 的 RN 封装,即今天要提到的主角 react-native-tableview

安装与链接

  1. 安装

    • npm npm install react-native-tableview --save
    • yarn yarn add react-native-tableview
  2. 链接

    • react-native link react-native-tableview
    • 如果命令失败的,可以使用手动方式
  3. 使用

    import TableView from 'react-native-tableview'
    
  4. 手动链接

    • 打开 Xcode, 在工程目录下的 Libraries 选择添加文件。
    • 选择 ./node_modules/react-native-tableview/RNTableView.xcodeproj
    • 选择工程,在 Build Phases -> Link Binary With Libraries 添加 libRNTableView.a。
    • 在 Build Setting 中找到 Search Paths/Header Search Paths,添加 $(SRCROOT)/../node_modules/react-native-tableview (make sure it's recursive)。

使用

react-native-tableview 支持了 iOS UITableView 及 UITableViewCell 的几乎所有功能,UITableViewUITableViewCell 的基础属性都是支持的,这个看作者的文档即可。

react-native-tableview 支持两种方式的自定义 Cell:

  • RNReactModuleCell
  • RNCellView

RNReactModuleCell

RNReactModuleCell 方式的自定义 Cell 实现了 UITableView 的重用功能

-(UITableViewCell*)setupReactModuleCell:(UITableView *)tableView data:(NSDictionary*)data indexPath:(NSIndexPath *)indexPath {
    RCTAssert(_bridge, @"Must set global bridge in AppDelegate, e.g. \n\
              #import <RNTableView/RNAppGlobals.h>\n\
              [[RNAppGlobals sharedInstance] setAppBridge:rootView.bridge]");
    RNReactModuleCell *cell = [tableView dequeueReusableCellWithIdentifier:_reactModuleCellReuseIndentifier];
    if (cell == nil) {
        cell = [[RNReactModuleCell alloc] initWithStyle:self.tableViewCellStyle reuseIdentifier:_reactModuleCellReuseIndentifier bridge: _bridge data:data indexPath:indexPath reactModule:_reactModuleForCell tableViewTag:self.reactTag];
    } else {
        [cell setUpAndConfigure:data bridge:_bridge indexPath:indexPath reactModule:_reactModuleForCell tableViewTag:self.reactTag];
    }
    return cell;
}

RNReactModuleCell 源码你会发现,他继承自 UITableViewCell,在每一个 cell 的内部是一个 rootView,拥有自己的 moduleName,所以在 RN 上使用时,需要注册这个 cell。假设这个自定义 cell 的名字叫 TableViewExampleCell

OC 部分:

- (void)setUpAndConfigure:(NSDictionary*)data bridge:(RCTBridge*)bridge indexPath:(NSIndexPath*)indexPath reactModule:(NSString*)reactModule tableViewTag:(NSNumber*)reactTag {
    NSDictionary *props = [self toProps:data indexPath:indexPath reactTag:reactTag];
    if (_rootView == nil) {
        //Create the mini react app that will populate our cell. This will be called from cellForRowAtIndexPath
        _rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:reactModule initialProperties:props];
        [self.contentView addSubview:_rootView];
        _rootView.frame = self.contentView.frame;
        _rootView.autoresizingMask = UIViewAutoresizingFlexibleWidth |UIViewAutoresizingFlexibleHeight;
    } else {
        //Ask react to re-render us with new data
        _rootView.appProperties = props;
    }
    //The application will be unmounted in javascript when the cell/rootview is destroyed
}

JS 部分:

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

在使用这种方式的时候,cell 的高度是需要自己计算出来的(cell 高度不确定的情况还是蛮多的),虽然现在 UITableView 已经能通过正确的约束自己计算出 cell 的高度,并不需要用户指定,但是显然这个优秀的功能用不到这里☹️。

RNCellView

RNCellView 方式并不需要另外注册,RNCellView 只是一个普通的 view。这里还需要另外一个帮手:RNTableViewCell。RNTableViewCell 集成自 UITableViewCell,RNTableViewCell 与 RNCellView 相互引用,当 RNCellView 的高度发生变化的时候,通过弱引用当前 UITableView 刷新列表。

import TableView from 'react-native-tableview';

const { Section, Item, Cell } = TableView;

...

render() {
    <TableView
        style={{ flex: 1}}
        allowsToggle
        allowsMultipleSelection
        tableViewStyle={TableView.Consts.Style.Grouped}
        tableViewCellStyle={TableView.Consts.CellStyle.Subtitle}
        onPress={(event: any) => console.log(event)}
        reactModuleForCell='TableViewExampleCell'
    >
        <Section label="Section 3" arrow={false}>
            <Cell componentHeight={80}>
                <View>
                    <Text>Cell 11</Text>
                    <Text>Cell 12</Text>
                    <Text>Cell 13</Text>
                    <Text>Cell 14</Text>
                    <Text>Cell 15</Text>
                    <Text>Cell 16</Text>
                    <Text>Cell 17</Text>
                </View>
            </Cell>
            <Cell componentHeight={80}><Text>Cell 2</Text></Cell>
            <Cell componentHeight={80}><Text>Cell 3</Text></Cell>
        </Section>
    </TableView>
}

通过这种方式自定义 cell,完全不用担心 cell 的高度怎么变化,在 RN 部分,通过 onLayout 方法,动态获取高度,然后在原生部分,实时刷新。

JS 部分:

import React from 'react'
import { requireNativeComponent } from 'react-native'

const RNCellView = requireNativeComponent('RNCellView', null)

export default class TableViewCell extends React.Component {
  constructor(props) {
    super(props)

    this.state = { width: 0, height: 0 }
  }
  render() {
    return (
      <RNCellView
        onLayout={(event) => {
          this.setState(event.nativeEvent.layout)
        }}
        {...this.props}
        componentWidth={this.state.width}
        componentHeight={this.state.height}
      />
    )
  }
}

OC 部分:

- (void)setComponentHeight:(float)componentHeight {
    _componentHeight = componentHeight;
    if (componentHeight){
        [_tableView reloadData];
    }
}

RNCellView 没有使用重用:所有的 RNCellView 都被缓存在全局数组 _cells 里面,_cells 是一个二维数组,每个 section 对应一个数组,数组里面存放的是该 section 下面的 cell。

- (void)insertReactSubview:(UIView *)subview atIndex:(NSInteger)atIndex
{
    // will not insert because we don't need to draw them
    //   [super insertSubview:subview atIndex:atIndex];
    
    // just add them to registry
    if ([subview isKindOfClass:[RNCellView class]]){
        RNCellView *cellView = (RNCellView *)subview;
        cellView.tableView = self.tableView;
        while (cellView.section >= [_cells count]){
            [_cells addObject:[NSMutableArray array]];
        }
        [_cells[cellView.section] addObject:subview];
        if (cellView.section == [_sections count]-1 && cellView.row == [_sections[cellView.section][@"count"] integerValue]-1){
            [self.tableView reloadData];
        }
    } else ...
}

数据结构

最后来说下从 RN 端到 OC 端的数据传递。

JS 端的数据转换的核心代码在 TableView.js 文件。

[{
    "customCells":false,
    "items":[{
            "arrow":true,
            "label":"label",
            "message":"message"
        },{
            "arrow":true,
            "height":100,
            "label":"label",
            "message":"message"
        }],
    "count":5
},{
        "customCells":false,
        "label":"Section 2",
        "items":[{
            "label":"Item 1",
            "arrow":false,
            "children":"Item 1"
        }, {
            "label":"Item 2",
            "arrow":false,
            "children":"Item 2"
        }],
    "count":3
}, {
    "customCells":true,
    "label":"Section 3",
    "items":[{
        "label":"Section 3",
        "arrow":false,
        "componentHeight":80
    }, {
        "label":"Section 3",
        "arrow":false,
        "componentHeight":80
    },{
        "label":"Section 3",
        "arrow":false,
        "componentHeight":80
    }],
    "count":6
}]

这个对应 TableView 的 sections 属性,注意 customCells,当他的值为 true 时就会使用 RNViewCell,即 TableView 的子视图类型为 TableViewCell,即上面使用 <Cell></Cell> 标签。

SectionItem 标签并不渲染,在他们的 render 方法里均 return null

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • 一、简介 <<UITableView(或简单地说,表视图)的一个实例是用于显示和编辑分层列出的信息的一种手段 <<...
    无邪8阅读 10,578评论 3 3
  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 8,978评论 3 38
  • 阿臀,在训练队里面我们都这么喊他。我们既是大学同学又是同专业训练队的队友,铁哥们了! 他话不多,普...
    04cc86aaf295阅读 362评论 2 0
  • 我知道如果自己每天写完一定量内容,并在每日结束前把当天写完的内容编辑到可以发布的水准,我终究会完成这本电子书。而且...
    ldxyq阅读 167评论 0 0