vote up 0 vote down star
1

What's the best way to check if a Nib or Xib file exists before trying to load it using initWithNibName:bundle: or similar?

flag

Why would the nib be missing? Especially in an iPhone app; it's not like the user can mess around inside your signed application bundle. (Maybe on jailbreak, but even then, the user should expect brokenness if they go deleting things from inside of apps.) – Peter Hosey May 29 at 0:01
You are quire right. I have quite a complex interface hierarchy and some of the nib's are not yet completed. I wanted to 'catch' any not found and display a "Not Implemented" alert, it means I can send out demos and not crash the simulator if I click on the wrong button. – rjstelling May 29 at 0:08

2 Answers

vote up 1 vote down

There are two solutions I see here.

You could just call initWithNibName:bundle: and catch an exception if it fails (I like this idea, it feels robust). You will probably want to verify that the exception is in fact a "file not found" exception rather than, say, an "out of memory" exception.

Alternatively, you could check the existence of the nib first, using NSBundle's pathForResource:ofType:, which returns nil for files that don't exist.

link|flag
initWithNibName:bundle: doesn't throw an exception if the file does not exist you only get problems when you try to use it with something like pushViewController:animated: – rjstelling May 28 at 23:47
2  
initWithNibName:bundle returns nil if nib can't be found; so check for this instead. – Abizern May 28 at 23:51
vote up 0 vote down check

The actual solution used was:

if([[[NSBundle mainBundle] autorelease] pathForResource:fileName ofType:@"nib"] != nil) 
{
//file found
...
}

Please note, the documentation states that ofType: should be the extension of the file. However even if you are using .xib you need to pass `@"nib" or you will get a false-negative.

link|flag
Is autorelease really needed in this call? – LucasTizma Jun 7 at 17:03
1  
No, you should not autorelease the return value of [NSBundle mainBundle] as you do not own the result (see the Cocoa Memory Management Programming Guide). – Barry Wark Jul 10 at 23:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.