I'm trying to achieve this "effect" in cocoa (photo taken from Things.app from Cultured Code):
相关问题
- NSOutlineView drag line stuck + blue border
- How to map interface names to different method nam
- Union of two object bags in Java
- Should this property be part of my object's in
- iphone sdk see size of local file (one created
相关文章
- List可以存储接口类型的数据吗?
- Xcode: Is there a way to change line spacing (UI L
- Converting (u)int64_t to NSNumbers
- “getter” keyword in @property declaration in Objec
- NSMenuItem KeyEquivalent “ ”(space) bug
- Why are my UIView layer properties not being set w
- When to use Interfaces in PHP
- Can Eclipse auto-generate an interface of a 3rd pa
Try using an NSTableView or NSOutlineView with the selection style set to source list:
Then create a custom NSCell class that displays your icon and text.
PXSourceList makes creating a source list very easy.