Robert Covington wrote:
> could use other finessing
To keep the Objective-C nitpicking style police from your door, change:
id myController = [[PopController alloc]init];
to:
PopController *myController = [[PopController alloc] init];
Robert P.