On Jan 14, 2016, at 4:38 PM, Alex Kac <a...@webis.net> wrote:
> 
> I have a NIB with two views that I want to use depending on circumstances. I 
> call one “weatherCell” and one “weatherCellNarrow”. 
> 
> I register it like this:
> 
> - (NSString*)identifierForWeatherCell {
>       return _narrowView ? @"weatherCellNarrow":@"weatherCell";
> }

> nib = [[NSNib alloc] initWithNibNamed:@"WeatherCell" bundle:nil];
> [self.outlineView registerNib:nib 
> forIdentifier:self.identifierForWeatherCell];

I don't think you should register the NIB for one identifier or the other.  You 
should register it for both.  The "active" identifier is the one used for the 
call to -makeViewWithIdentifier:owner:, but there's no reason to be stingy with 
the registration.

Regards,
Ken


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to