Search Results

0
votes

Changing font tracking in Cocoa

I don't think font tracking is an exposed property for text layout with attributed strings. You could perhaps use the available expansion attribute on whitespace, and manua …
1
vote

Do I still need to learn about managing memory now that Objective-C/Cocoa has Garbage collection?

It is probably worth learning about the concepts that underpin Cocoa memory management, as it's still useful in certain situations. The iPhone OS, for example does not support garbage collection. T …
1
vote

Why the Observer in NSNotification called twice… ?

If the observer class is registered for a notification by name, but not against a specific object, it will receive multiple messages, as it will be invoked every time the notification occurs, regar …
5
votes

How can I find out the type of a NSDictionary element?

There's various sorts of introspection you can perform on any object at runtime, contained within the NSObject protocol. …