Tagged Questions
The imagenamed tag has no wiki summary.
65
votes
2answers
13k views
Dispelling the UIImage imageNamed: FUD
I see a lot of people saying imageNamed is bad but equal numbers of people saying the performance is good - especially when rendering UITableViews. See this SO question for example or this article on ...
5
votes
2answers
451 views
UIImage:imageWithContentsOfFile is 10 times slower in iOS 5.0
After simply recompiling our iPhone application on newly released iOS 5.0 SDK i faced strange problem - all UIImage:imageNamed (first call with actual image loading) and ...
4
votes
4answers
1k views
(iPhone) Use external image in UIImage imageNamed
I am downloading two images from the web Apple.png and Apple@2x.png. I want to use [UIImage imageNamed:@"Apple.png"] so it can use the build in features to detect whether it should display either ...
4
votes
2answers
307 views
iPhone App crashes after switching, possibly due to UIImage imageNamed
Hey guys, this may be an obvious thing, but I can't figure it out.
My app moves 10 UIImageViews randomly around the screen, and once an UIImageView hits the corner, it changes its image. The problem ...
4
votes
4answers
5k views
How to get [UIImage imageWithContentsOfFile:] and High Res Images working
As many people are complaining it seems that in the Apple SDK for the Retina Display there's a bug and imageWithContentsOfFile actually does not automatically load the 2x images.
I've stumbled into a ...
1
vote
3answers
350 views
imageNamed is evil - How to use the function
- (UIImage*)thumbnailImage:(NSString*)fileName
{
UIImage *thumbnail = [thumbnailCache objectForKey:fileName];
if (nil == thumbnail)
{
NSString *thumbnailFile = [NSString ...
1
vote
1answer
414 views
setImage - addSubview - release
Here is some code for iPhone:
Controller.h:
IBOutlet UIImageView *userImage;
IBOutlet UIImageView *userImage2;
}
@property (nonatomic, retain) IBOutlet UIImageView *userImage;
@property (nonatomic, ...
1
vote
1answer
286 views
(iphone) imageNamed when there are multiple files with same name?
as question says, How does imageNamed work when there are multiple files with the given name under the resource directory?
Is there a way to differentiate two different files with same name (but ...
1
vote
1answer
2k views
NSImage imageNamed: for Mac Mini returns small icon instead of high-res
When using NSImage's imageNamed: method to get the icon for the current computer, if I'm running on a Mac Mini, then I get a low resolution image. If I run the same code from my MacBook, then I get a ...
0
votes
1answer
27 views
UIImage that won't disappear when removing it from its superview [closed]
Under iOS 5, I encounter the following problem : the following code is called on a controller everytime a new product is picked in the application. It displays a bullet list of features in the ...
0
votes
1answer
411 views
UIImage initWithContentsOfFile doesn't work
I have question: I want to avoid [UIImage imageNamed:].
So i did:
UIImage *prodImg = [[UIImage alloc] initWithContentsOfFile:@"myimage.png"];
controller.productImg.image = prodImg;
[prodImg ...
0
votes
3answers
74 views
mem allocation with imageNamed
I want to display some images, when image is not available I want to show a default one.
When using the analyze functionality I get warnings about a potential leak.
I do under stand that when using ...
0
votes
1answer
54 views
Adding PNG to UIImageView with code looks terrible compared to adding it directly in the NIB
How do I get the image added to the UIImageView to look the same when added in code as when I add it directly in the NIB?
I have a 5 of clubs picture, in the NIB file I use the Image drop down to ...
0
votes
1answer
142 views
JPG problem with UIImage (imageNamed method)
I read on the reference that from iOS version 4.+ with the method imageNamed of UIImage object,
the file extension is not required.
From UIImage Class Reference:
"Special Considerations
On iOS 4 and ...
0
votes
1answer
174 views
How to give a name to a saved Image from the imagePickerController
I'm using an imagePickerController to replace my existing images inside my view. The function works within the same IB-file. However I'd like to load the chosen image in another IB-File as well. I ...
0
votes
2answers
76 views
How to assign unique names to images?
I'm writing a web application where users can upload images. I wonder what's the best practice of assigning unique names to images ? I thought MD5 can ben useful and enough, but since each image has ...
0
votes
1answer
166 views
UIImage ImageNamed method
In my app, I am loading several images onto a UIScrollView and I highlight a portion of the scroll view using Core Graphics routine. I have used the CGImageRelease and CGContextRelease to manage the ...
0
votes
1answer
122 views
UIImage imageNamed returning wrong image
I'm having a weird problem using [UIImage imageNamed:] method to set table view cells' backgrounds.
I typically do this for a cell:
backgroundColor = [UIColor colorWithPatternImage:[UIImage ...
0
votes
1answer
88 views
Problems with images on iPhone
In my application I use lots of images based in interface builder. The problem with this is that it uses large amounts of memory because interface builder caches it much liked "imageNamed" so I've ...
0
votes
2answers
447 views
iPhone app memory leak with UIImage animation? Problem testing on device
I have an animation which works fine in the simulator but crashes on the device. I am getting the following error...
Program received signal: “0”.
The Debugger has exited due to signal 10 (SIGBUS)
...