Apologies, I discovered buried in my initializer the following line:
self = [[UIImageView alloc] initWithImage:[UIImage imageNamed:pieceGraphicFilename]];
I changed it to the following and am no longer having the issue:
self.image = [UIImage imageNamed:pieceGraphicFilename];
Jameson
2010-09-13 07:27:30