开发者

Simple, but dynamically generated flow chart or process chart view for iOS

Perhaps "flow chart" or "process chart" isn't even the correct terminology for what I'm looking for, but it's the best analog I can come up with. Basically, I'm trying to find a library or class that allows for the dynamic creation (in code) of connected cells/UIViews within a given space. In code, you could add/delete ordered cells from the view and it will arrange accordingly. Normally, if the superview size permits (i.e. iPad), it would arrange these connected cells horizontally. If it's space constrained (iPhone), it would arrange as many cells as possible on one line horizontally, then continue the rest of the cells horizontally below ... akin to a graphical "word wra开发者_JAVA技巧p".

Granted, I doubt there's a magical library that does all of this, but if the SO community can point me to some better terminology and/or some potential candidates to fork, I would be incredibly appreciative.

I've looked at AQGridView and it is such a vast library, I believe it's overkill with a compiled size of +700 Kb. SSCollectionView is really close, but you have to manually center cells and it doesn't yet support variable cell height/width.

To give you a better sense of what I'm imagining, here's a pic:

Simple, but dynamically generated flow chart or process chart view for iOS


Done. I had to write my own, but it works just like I wanted it to. Feel free to fork my AppendingFlowView repository at GitHub.

  • It's dynamic (add stages on demand).
  • It responds to changes in the master view by reorienting and resizing the cells as necessary with animation!
  • It handles multiple rows automatically, depending on the desired cell size and number of cells.

Simple, but dynamically generated flow chart or process chart view for iOS


I created this open-source ios-lib to easily create a graph or tree and draw it in a view.

Please feel free to make pull requests :)

https://github.com/chikuba/JENTreeView

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜