Property Editor Control for Cocoa?

我怕爱的太早我们不能终老 提交于 2019-12-25 09:20:47

问题


Is there any Cocoa Widget which i can use to build a typical (well except in Interface Builder) GUI builder property inspector like RealBasic or Delphi has?

And is there a website where additional 3rd party Cocoa widgets are listed?


回答1:


InspectorKit (github) might be what you are looking for.




回答2:


If you're using Core Data, you can option-drag a Core Data entity from Xcode (in your model) to an IB window and it will automatically create an inspector-type view. I'm not familiar with RealBasic so I'm not sure if this is what you're looking for.




回答3:


Mac programs traditionally don't include generic "property editor" UI's. There are probably many reasons for this, but perhaps the most salient is that a "property editor" (presumably one that automatically generates a UI from an object's properties) is rarely the best UI you could provide. Since user experience is highly prised on the Mac, most developers attempt to produce a more "custom" editor for the UI.

The OmniGroup apps have excellent "inspector" UIs—specific editors designed for asthetic appeal and user experience in a particular use case. The OmniAppKit.framework, part of the open-source offerings from the OmniGroup contains classes for implementing similar inspectors.



来源:https://stackoverflow.com/questions/2081404/property-editor-control-for-cocoa

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!