Useful Cocoa Frameworks
- PSMTabBarControl
- Fully-featured TabBar Control
- RBSplitView
- A replacement for NSSplitView
- OgreKit
- Regular Expression Framework for Cocoa
- RegExKit
- Lightweight regular expressions for Cocoa
- HTTPS Server
- Embedded Cocoa HTTP Server
- OpenCV
- Mac OS X port of face recognition software
- JSON Framework
- A cocoa framework for the JSON notation
Sites (or rather people), which offer source code
Sites with tutorials
Snippets
Iterating over an NSIndexSet
NSIndexSet *indexSet = [self selectedRowIndexes];
unsigned index = [indexSet firstIndex];
while (index != NSNotFound)
{
index = [indexSet indexGreaterThanIndex: index];
}
Debug Exceptions with GDB (eg. out ouf bounds exception)
break objc_exception_throw
Zuletzt geändert am 25.06.2008 09:28 Uhr