DLForcedGraphView 0.1.1× 测试已测试✓ 语言语言 Obj-CObjective C许可 MIT 发布上次发布2014年12月由 Denis Lebedev 维护。安装指南×DLForcedGraphView 安装指南您需要在 Podfile 中添加类似于以下内容:pod 'DLForcedGraphView', '~> 0.1'target 'MyApp' do pod 'DLForcedGraphView', '~> 0.1' end然后在终端内部或从 CocoaPods.app 中运行 pod install或者为了进行测试运行,运行以下命令:pod try DLForcedGraphView查看 PodspecGitHub 仓库CocoaPods.org 上的页面DLForcedGraphView 0.1.1由Denis Lebedevdelebedevgarnett/DLForcedGraphViewGitHub 仓库 使用 SceneKit 实现 强制图 的 Objective-C 实现。 演示 安装 Pod 即将推出。 用法 将 DLForcedGraphView 添加为子视图并向其中添加要显示的图边 NSArray *edges = @[ DLMakeEdge(0, 1), DLMakeEdge(1, 2), DLMakeEdge(2, 0), ]; [forcedGraphView.graphScene addEdges:edges];