Pierre Bernard

My little hideout on the net

May 24
April 24
March 24
February 24
January 24
December 23
November 23
October 23
September 23
August 23
July 23
June 23
May 23
April 23
March 23
February 23
January 23
December 22
November 22
October 22
September 22
August 22
July 22
June 22
May 22
April 22
March 22
February 22
January 22
December 21
November 21
October 21
September 21
August 21
July 21
June 21
May 21
April 21
March 21
February 21
January 21
December 20
November 20
October 20
September 20
August 20
July 20
June 20
May 20
April 20
March 20
February 20
January 20
December 19
November 19
October 19
September 19
August 19
July 19
June 19
May 19
April 19
March 19
February 19
January 19
December 18
November 18
October 18
September 18
August 18
July 18
June 18
May 18
April 18
March 18
February 18
January 18
December 17
November 17
October 17
September 17
August 17
July 17
June 17
May 17
April 17
March 17
February 17
January 17
December 16
November 16
October 16
September 16
August 16
July 16
June 16
May 16
April 16
March 16
February 16
January 16
December 15
November 15
October 15
September 15
August 15
July 15
June 15
May 15
April 15
March 15
February 15
January 15
December 14
November 14
October 14
September 14
August 14
July 14
June 14
May 14
April 14
March 14
February 14
January 14
December 13
November 13
October 13
September 13
August 13
July 13
June 13
May 13
April 13
March 13
February 13
January 13
December 12
November 12
October 12
September 12
August 12
July 12
June 12
May 12
April 12
March 12
February 12
January 12
December 11
November 11
October 11
September 11
August 11
July 11
June 11
May 11
January 10
December 09
November 09
October 09
September 09
August 09
May 09
April 09
March 09
February 09
January 09
November 08
October 08
September 08
June 08
May 08
April 08
March 08
February 08
January 08
December 07
November 07
October 07

Key-Value Observing Done Right. Again.

I love using KVO for all sorts of things: side-effect, flagging UI as dirty, resetting caches, …

Writing the observeValueForKeyPath:ofObject:change:context: method has long since become tedious. So I created a TextExpander snippet to write it for me.

Still, I don't quite like it relying of string comparisons (which I use for context). And I regularly find myself forgetting to unregister observers.

Mike Ash wrote a interesting blog post where he makes a couple of good points against the current KVO API. The most important of which, I think, is the fact unregistering an observer might actually break behavior upon which the superclass relies.

Andy Matuschak has proposed a very convenient API which uses blocks to handle observation callbacks. While I love this solution, I found it to still have a couple of drawbacks:

  • Andy's KVO+Blocks requires Mac OS X Snow Leopard. It relies not only on blocks, but also on associated objects and Grand Central Dispatch.
  • Code is not always easer to read when the callback block is written where it is registered. At times, I would prefer a traget+action setup
  • KVO+Blocks make it all too easy to create retain cycles: referencing an instance variable from within the block retains the owning object.

Inspired by Mike's and Andy's writings and work, I have come up with my own implementation: HHKeyValueObserver.

  • Works on both Leopard and Snow Leopard. Relies on HHAssociatedObjects
  • Target action mechanism with the following signatures: actionWithInfo:change: or actionWithInfo:
  • Uses blocks where available
  • Unregisters automatically on dealloc of the observer

Retain cycles may be avoided by referring to the observed object by the way of observationInfo.observee.

Comments

HHAssociatedObjects

Mac OS X 10.6 introduced associated objects by the means of objc_getAssociatedObject and objc_setAssociatedObject. These provide a very convenient method for attaching object values to random objects. Associated objects can conveniently share the lifespan of the object they are associated with.

One situation where associated objects come in especially handy is when writing categories. Associated objets may be used be category methods to store state. It's the closest thing we got to adding instance variables.

The catch being that many projects still need to support Leopard. HHAssociatedObjects implements the concept of associated objects to support Leopard and Snow Leopard. Where available, the objc_getAssociatedObject and objc_setAssociatedObject methods are used. Elsewhere a NSMapTable is used to store associate objects.

HHAssociatedObjects are made available as a category on NSObject. I settled on the same API as Andy Matuschak. On Snow Leopard the implementation is actually the same as Andy's. HHAssociatedObjects adds a Leopard compatible implementation.
Comments

HHAutoHidingWindow

For the next version of HoudahSpot, I am implementing a window which docks to the side of the screen where it shows and hides as needed. After looking into several implementations, I came up with my own. Seeing this may come in handy to some, I'd like to share this bit of code with you.

HHSlidingWindow allows for docking a window at an edge of the main screen. From there it may slide in and out of visibility. Its subclass HHAutoHidingWindow
provides automatic showing of the window as the mouse hits the screen edge where the window is hiding. The implementation is actually pretty straightforward.
It relies solely on tracking areas. No polling is done.
Comments

Automatically releasing retained @property values

I subscribe to the opinion, that setters should not be called in constructors nor in destructors. This negates some of the benefits of @synthesize accessors. Indeed, one needs to keep the dealloc method in sync with the setter semantics. Our dealloc methods thus look like this:

- (void)dealloc
{
// Retained properties
[_firstProperty
release], _firstProperty = nil;
[_thirdProperty
release], _thirdProperty = nil;

// Assigned properties
secondProperty =
nil;

[
super dealloc];
}

This is repetitive and error-prone. Luckily, we may generate @synthesize instructions as well as destructors.

The alternative, is to use introspection to dynamically determine how the various properties need to be freed. For this, I suggest a category on NSObject:

@implementation NSObject (PropertyDealloc)

- (
void)deallocProperties
{
Class class = [self class];
unsigned int pCount;
objc_property_t *properties = class_copyPropertyList(class, &pCount);

for (unsigned int i = 0; i < pCount; i++) {
objc_property_t property = properties[i];
NSString *propertyAttributes = [[[NSString alloc] initWithUTF8String:property_getAttributes(property)] autorelease];
NSArray *propertyAttributeArray = [propertyAttributes componentsSeparatedByString:@","];
BOOL isRetained = NO;

for (NSString *string in propertyAttributeArray) {
isRetained = isRetained || [string
isEqual:@"&"] || [string isEqual:@"C"];
}

if (isRetained) {
NSString *variableName = nil;
NSString *lastProperty = (NSString*)[propertyAttributeArray lastObject];

if ([lastProperty hasPrefix:@"V"]) {
variableName = [lastProperty
substringFromIndex:1];
}

if (variableName != nil) {
Ivar ivar = class_getInstanceVariable(class, [variableName UTF8String]);
id value = object_getIvar(self, ivar);

object_setIvar(self, ivar, nil);
[value
release];
}
}
}

free(properties);
}

@end

Usage is extremely simple:

- (void)dealloc
{
[
self deallocProperties];

[
super dealloc];
}

This post was inspired by Vincent Gable.
Comments (3)

Elephant Back Ride

Houdah Software now has an official blog. We will discuss news, tips & tricks regarding our Mac & iPhone products: HoudahSpot, HoudahGeo, HoudahGPS, ACTCurrency, ACTPrinter, ACTSudoku, …

My personal blog will no longer include product or sale announcements for Houdah Software. It will instead focus on subjects related to software development. I will continue to announce open source code provided by Houdah Software. I may also publish the occasional movie review.

BTW, you owe it to yourself to go see Avatar. It is spectacular. Though the story may be somewhat predictable, this movie combines spectacular images with some excellent story telling.
Comments

HoudahSpot 2.6

HoudahSpot 2.6 improves integration with other applications by the way of Mac OS X services. HoudahSpot itself provides a "BlitzSearch" and a "Search Location" service.

HoudahSpot 2.6 brings many more enhancements:

▪ HoudahSpot 2.6 adds toolbar buttons for "Add ALL Group", "Add ANY Group" and "Add NONE Group".
▪ A "Search Location in HoudahSpot" service is now provided in the Finder as well as in other applications working with files.
▪ Users may narrow down a search by command-clicking folders in the path control at the bottom of the window.
▪ The grid view now has a slider to adjust icon size.
▪ The grid view now provides the same contextual menu as the list view.
▪ One may now see the MDQuery string passed to Spotlight.
▪ Clicking a "+" button on a criterion row duplicates the current row. This makes it easier than ever to refine a search.
▪ HoudahSpot 2.6 improves integration with other applications through Mac OS X services. Services are also available for the contextual menus.
▪ The BlitzSearch service is now enabled by default under Snow Leopard.
▪ Result list font size is adjustable and preference is persisted.
▪ HoudahSpot 2.6 features new toolbar and preferences icons by Lars Herrmann.
▪ The keyboard shortcut for item deletion has been changed to match other applications.

For details, have a look at the
screencast.
Comments

MacGraPhoto - A Graphics Applications Bundle

Get 7 great graphics applications for the price of one: $39.99 instead of $251

The MacGraPhoto bundle allows Mac users to get 7 premium graphics applications for the price of one or even for free. Applications in MacGraPhoto bundle will satisfy most of imaging needs of any Mac user: image editing, applying effects, format conversion, batch processing, vector drawing, geo-tagging photos, framing them or even creating posters and postcards.

Most Mac bundles lack focus - they collect unrelated applications, and many Mac users usually need only a couple of them. MacGraPhoto bundle is focused exclusively on graphics: it is a hand-picked selection of 7 premium applications from 7 different companies. Most of these applications received Apple "Staff Pick" or Apple Design Award.
Comments

One Finger Discount

One Finger Discount is a promotion inspired by the current MacHeist nanoBundle that is running for the rest of the week, offering a discount of 20%, or one fifth, the full price of the software. It is being run by Daniel Jalkut of Red Sweater Software, developer of MarsEdit and more.
One_Finger_Discount!-20091109-133640
Comments

TheMacSale 2 features HoudahGeo

Get 10 great Mac applications for only $49.99 at themacsale.com. The bundle includes HoudahGeo (regular single-user license).
Comments

HHDualShortcutButton updated

HHDualShortcutButton has been updated to be Cocoa only. No more Carbon code!

This makes it require Mac OS X 10.6 Snow Leopard.
Comments