DLForcedGraphView 0.1.1

DLForcedGraphView 0.1.1

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布上次发布2014年12月

Denis Lebedev 维护。




使用 SceneKit 实现 强制图 的 Objective-C 实现。

演示

demo

安装

Pod 即将推出。

用法

DLForcedGraphView 添加为子视图并向其中添加要显示的图边

NSArray *edges = @[
  DLMakeEdge(0, 1),
  DLMakeEdge(1, 2),
  DLMakeEdge(2, 0),
];

[forcedGraphView.graphScene addEdges:edges];