3
votes
Is there a cocoa library for advanced date + time handling?
NSCalendar + NSDateComponents?
However, like Peter Hosey said, it's hard to know without knowing what it is you want to do.
…
1
vote
Lightweight way of flooring an NSDecimal?
NSDecimal result;
NSDecimalRound(&result, &decimal, 0, NSRoundDown);
(not tested)
…
2
votes
3
votes
Accessing classes in .a library file?
If you mean Code Sense/autocompletion, IIRC they're based off of included headers. If you don't have the headers, you won't get the hints.
…
