Could not load the "" image referenced from a nib in the bundle with identifier

Xcode Version 9.3.1 (9E501)


Could not load the "" image referenced from a nib in the bundle with identifier


Any idea how I can debug this? In general I do not see anything wrong when the UIViewController is displayed?


I also get a console error


"Status bar could not find cached time string image. Rendering in-process."


following the suggestion in https://www.logcg.com/en/archives/2478.html I looked at the xib file with source code editor. I check that all the images are in my framework and are part of the target


how ever I do not get an compiler warning. Also its not part of the xib file


///////////////////////////////////////////////////////////////////////////////

- (void) displayPickerSaveButton {

if (!self.pickerSave) {

self.pickerSave = [[UIBarButtonItem alloc] initWithTitle:@"Save"

style:UIBarButtonItemStyleDone

target:self

action:@selector(dismissPickerSaveButton:)];

}


self.navigationItem.rightBarButtonItem = self.pickerSave;

}


The only thing unsually about the UIViewController is that it has a child UIView that is written in swift and a child written in Objc that is a UIViewController. the Child UIViewController was written a couple of releases ago. I never had this problem before


Kind regards


Andy

Replies

"" image means nothing was found.

What is the image name ? Is it .png or .jpg (could cause problem)


Did you try :

- to remove the image

- clean build folder

- reinstall the image

- clean build by security


Also, a suggestion here :

h ttps://stackoverflow.com/questions/12672603/could-not-load-the-image-referenced-from-a-nib

Searched for "image=" in .storyboard and found similar string.