liuxu.tamer

Results 4 comments of liuxu.tamer

> 和LuaViewSDK 有什么区别 早在几年前阿里就推出这样的方案了 https://github.com/alibaba/LuaViewSDK/ Lua 做跨平台是一个不错的方案,我们前期也了解过LuaView的方案。但是LuaView应该仅处于Demo阶段,MLN相对更加成熟。 1. 更丰富的控件&更贴近原生的设计 2. 更简便高效的Bridge扩展方式 3. 更高效的开发工具支持 ... MLN期待每一位开发者更深入了解与反馈。

iOS 中onClick是使用tap手势实现。在iOS 上判定手势生效后会主动调用touch cancel,不再回调touch end。

collectionViewAdapter:initCellByReuseId(collectionCellId, function (cell) local CellClass = require("xxxCell") cell.realCellInstance = CellClass:new() cell.contentView:addView(cell.realCellInstance.contentView) end) 改写成: collectionViewAdapter:initCellByReuseId(collectionCellId, function (cell) local CellClass = require("xxxCell") cell.realCellInstance = CellClass:new() ----- 添加以下代码 retainTable = {} retainTable.realCellInstance =...

1. 通过broadcast channel可以跨环境通讯(近期开源) 2. 可以自定义通讯bridge