I want to change the image of my tab bar item using self.tabBarItem.image = [UIImage imageNamed:@"home_icon.png"]; Seems simple enough, but I can't get it to run. Note: I'm simply replacing the file name from first to home_icon. The code works with the name "first".
Details:
I have started with the standard tabbed application and have only changed this one line of code. Xcode then loads the 64x64 image. I placed a home_icon.png file in the project and made sure it's a 30x30 png file. The docs says: "This method looks in the system caches for an image object with the specified name and returns that object if it exists. If a matching image object is not already in the cache, this method loads the image data from the specified file, caches it, and then returns the resulting object." Why can't I simple reference a different file here? I don't understand what is actually getting referenced here. The original line is self.tabBarItem.image = [UIImage imageNamed:@"first"];, to reference first.png.
What I tried (see answers so far):
- using home_icon, instead of home_icon.png
- Using
UIImage *img = [UIImage imageNamed:@"home.png"]; self.tabBarItem.image = img; - Adding the 2x file
- Checking output console. No errors mentioned. (The app still references the old file successfully).
- Checking target. File is added to target