Tagged Questions
An image view object provides a view-based container for displaying either a single image or for animating a series of images in iOS. For animating the images, the UIImageView class provides controls to set the duration and frequency of the animation. You can also start and stop the animation freely.
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 ...
24
votes
12answers
12k views
Center content of UIScrollView when smaller
I have an UIImageView inside a UIScrollView which I use for zooming and scrolling. If the image/content of the scroll view if bigger than the scroll view everything works fine. However, when the image ...
24
votes
5answers
35k views
how can i detect the touch event of an UIImageView
I have placed an image (UIImageView) on the navigation bar. Now I want to detect the touch event and want to handle the event. Could you let me know how can I do that?
Thanks.
21
votes
3answers
9k views
iPhone: Camera Preview Overlay
how do I add an overlay (UIImageView) to the camera preview and
handle touches on this?
My previous attempts to do this (e.g. use UIImagePickerController and add the image as a subview) have failed.
...
18
votes
6answers
46k views
How can I change the image displayed in an UIImageView programmatically?
I have an IBOutlet to an UIImageView, but when I look at the UIImageView doc, I can't see any hint about how to programmatically change it. Do I have to fetch an UIImage object from that UIImageView?
15
votes
2answers
6k views
Tiled Background Image: Can I do that easily with UIImageView?
I have a fullscreen background image that is tiled, i.e. it has to be reproduced a few times horizontally and vertically in order to make a big one. Like in the browsers on ugly home pages ;)
Is ...
14
votes
3answers
10k views
Add rounded corners to UIImageView
I would like to add some rounded corners to all of the UIImageViews in my project. I have already got the code working, but am having to apply it to every image; should I subclass UIImageView to add ...
14
votes
2answers
14k views
UITableViewCell with image on the right?
Is there a way to set the UITableViewCell.image to display on the right hand side of the cell instead of the left? Or will I need to add a separate UIImageView on the right side of the cell layout?
11
votes
2answers
8k views
Resizing UIimages pulled from the Camera also ROTATES the UIimage?
I am getting UIimages from the camera and assigning them to UIImageViews to be displayed. When I do this the camera gives me a 1200 x 1600 pixel image which I then assign to a UIImageView in my ...
9
votes
2answers
960 views
What happens to SDWebImage Cached Images in my app when the image file on the server changes?
I am using the SDWebImage library to cache web images in my app:
https://github.com/rs/SDWebImage/blob/master/README.md
Current Usage:
[imageView setImageWithURL:[NSURL ...
9
votes
1answer
2k views
How? UITableViewCell with UIImageView asynchronously loaded via ASINetworkQueue
I'm trying to load some images in table cells asynchronously using ASINetworkQueue. I just can't figure it out and can't seem to find a good SIMPLE example.
The best I can find is this, but its just ...
9
votes
6answers
22k views
How do I center a UIImageView within a full-screen UIScrollView?
In my application, I would like to present the user with a full-screen photo viewer much like the one used in the Photos app. This is just for a single photo and as such should be quite simple. I just ...
8
votes
1answer
681 views
Downloading normal image Vs retina device image (2x)
When we need to download an image from some URL and show it on two kinds of devices -- Retina (with 2x image) and regular device -- Should we have two different image URLs to handle this?
For the ...
8
votes
1answer
4k views
GesutureRecognizer on UIImageView
I have a UIImageView, which I want to be able to resize and rotate etc.
Can a GestureRecognizer be added to the ImageView?
I would want to add a rotate and pinch recognizer to a UIImageView which ...
8
votes
2answers
8k views
What is the best way to create a shadow behind a UIImageView
I have a UIImageView that I want to add a shadow behind. I wish that apple had that as a property but they have to make lots of things hard for us programmers so I need to ask this question.
8
votes
4answers
6k views
Delayed UIImageView Rendering in UITableView
Ok, I've got a UITableView with custom UITableViewCells that each contain a UIImageView whose images are being downloaded asynchronously via an NSURLConnection. All pretty standard stuff...
The issue ...
8
votes
3answers
3k views
How to compare UIColors?
I'd like to check the color set for a background on a UIImageView. I've tried:
if(myimage.backgroundColor == [UIColor greenColor]){
...}
else{
...}
but that doesn't work, even when I know the ...
8
votes
3answers
6k views
How can I rotate an UIImageView by 20 degrees?
What do I have to do, if I need to rotate an UIImageView? I have an image which I want to rotate by 20 degrees.
The Apple Docs talk about an transformation Matrix, but that sounds incredible ...
7
votes
6answers
2k views
A simple way to put a UIImage in a UIButton
I have a UIButton in my iPhone app. I set its size to 100x100.
I have an image that is 400x200 that I wish to display in the button.
The button STILL needs to stay at 100x100... and I want the ...
7
votes
3answers
17k views
Xcode iPhone Programming: Loading a jpg into a UIImageView from URL
My app has to load an image from a http server and displaying it into an UIImageView
How can i do that??
I tried this:
NSString *temp = [NSString alloc];
[temp ...
7
votes
2answers
4k views
Apple Interface Builder: adding subview to UIImageView
I created UIImageView with the help of Interface Bulder. Now I want to place label inside it (as its subview). In code I can type something like: [myUIImageView addSubview:myUILabel]; But can I do it ...
7
votes
4answers
3k views
What is the most efficient way to add a reflection to a UIImageView
I just want the easiest way to make a reflection under a UIImageVies that is easily managable.
7
votes
1answer
2k views
iPhone - Why does the documentation say UIImageView is NSCoding compliant?
Ideally an NSCoding compliant class will work as expected using encodeWithCoder: and initWithCoder: (at least I thought so till recently) without the developer having to bother about what goes on ...
6
votes
2answers
1k views
colorWithPatternImage Vs. UIImageView
Which is better to use if I simply want a background image for a UIView? I can accomplish this with either method, but which is more efficient? My hunch is that using a UIView with ...
6
votes
1answer
2k views
Detecting taps in uiimageview inside uiscrollview
I have a UIScrollView with multiple UIImageViews in it created like this.
frame = [[UIImageView alloc] initWithImage:bg];
frame.frame = CGRectMake(FRAME_SEPARATOR + numPage*1024 + ...
6
votes
8answers
22k views
UITableViewCell's imageView fit to 40x40
I use the same big images in a tableView and detailView.
Need to make imageView filled in 40x40 when an imags is showed in tableView, but stretched on a half of a screen. I played with several ...
5
votes
1answer
402 views
Rotating an image 90 degrees on same position when orientation changes
THIS IS SOLVED!
Ended up with doing this:
Easiest way to support multiple orientations? How do I load a custom NIB when the application is in Landscape? Works superb!
I have made an image ...
5
votes
4answers
656 views
cameraOverlayView problem on iOS 4.3
I'm using an picker Controller with a cameraOverlayView to display an image of a product in the camera view. The product image is resized before applying on the overlay.
It works fine on iOS 4.2 but ...
5
votes
1answer
270 views
how do I implement “Choose Existing Photo” in my app like in default iphone phonebook?
I want to develop an app which has functionality same as iphone phonebook capturing image and choosing iamge,
what should I to use for doing such
I have made an UIImageView and a button for ...
5
votes
1answer
612 views
rotating a view on touch
I have to rotate a view circularly on finger touch...I mean like dialing the old phones number...and the touch should be only on corners.....can any one help me...i have tried it a lot...but was not ...
5
votes
1answer
768 views
Fade in async loaded images in iOS
I'm trying to find a way to asynchronously load an image and then instead of having the images "just appear" in a UIImageView, have them fade in, similar to how it's done on the YouTube app on the ...
5
votes
2answers
1k views
what is the difference between UIImageView and drawInRect?
I want to display so many images in table cells. I knew two methods to show an image.
One is creating an instance to UIImageView and show it
CGRect rect=CGRectMake(x,y,width,height);
UIImageView ...
5
votes
1answer
674 views
Why doesn't my UIImageView respond to taps?
I have a UIImageView that's being loaded from a NIB. I've hooked up a gesture recognizer to it to handle taps, but when I run the app, taps aren't being detected.
5
votes
2answers
3k views
Creating a UIImage from a rotated UIImageView
I have a UIImageView with an image in it. I have rotated the image prior to display by setting the transform property of the UIImageView to CGAffineTransformMakeRotation(angle) where angle is the ...
5
votes
3answers
6k views
How do I make UITableViewCell's ImageView a fixed size even when the image is smaller
I have a bunch of images I am using for cell's image views, they are all no bigger than 50x50. e.g. 40x50, 50x32, 20x37 .....
When I load the table view, the text doesn't line up because the width ...
5
votes
1answer
2k views
how to insert UIImage into UITextView
im working on a editable notebook type project. it consists some text and images at any time.
in UITextView if we add images as subview the frames are fixed. but i have editable option. so i must ...
5
votes
4answers
10k views
Adding image to navigation bar
I'd like an image to take up all of a navigation bar. This is the navigation that comes with a navigation based app. It appears on the RootViewController with the accompanying UITableView. I've ...
5
votes
6answers
5k views
Center UIImageView inside UIScrollView without contentInset?
I have been unable to find the answer for this issue I am having.
I have a UIImageView inside a UIScrollView, and I would like the center its content vertically.
Right now, the only way I have been ...
5
votes
5answers
6k views
Is there an way to make an invisible UIButton that will still “be there” and catch touch events for my UIImageView?
I thought to be clever and just put an transparent UIButton over an UIImageView with the exact frame size, so that I can wire it up easily with any event I like, for example TouchUpInside, and make it ...
5
votes
2answers
1k views
Zoom Loupe on UIImageView
Does anyone know of a way to implement the zoom loupe functionality of a UITextField on the iphone in a UIImage view?
Part of the app I'm building allows a user to draw a line on a UIImage, a process ...
5
votes
3answers
9k views
How can I make UIImageView change its image programmatically?
I have this code:
- (void)viewDidLoad {
[super viewDidLoad];
landscape.image = [UIImage imageNamed:@"tenerife1.png"];
}
First, I created an UIImageView with IBOutlet. Landscape is pointing to that ...
4
votes
4answers
248 views
How to detect touches on UIImageView of UITableViewCell object in the UITableViewCellStyleSubtitle style
I am using the UITableViewCell object in the UITableViewCellStyleSubtitle
style(i.e an ImageView on the left, textLabel in bold and under that detailtextLabel) to create my table. Now I need to ...
4
votes
1answer
835 views
iPhone - Image in UIImageView does not shows up into simulator
I have imported some PNG pictures into my project, and into InterfaceBuilder, I add a UIImageView into a View. I set the Image property to the one imported (selecting it into the dropdown menu). It ...
4
votes
1answer
464 views
Why is UIImageView so memory intensive compared to CGContextDrawImage
Developing an iPad PDF-Reader we decided to prepare high-res images of rendering intensive pages (lots of paths in them) and use those instead of the pdf pages to avoid performance issues. We decided ...
4
votes
3answers
623 views
4
votes
1answer
270 views
How can I create large images in a UIImageView?
I am currently developing an app to create postcards. However, I am wondering on how to store the picture plus the frame (I have three frames depending on resolution) and some text in UITextView ...
4
votes
3answers
849 views
Faster iPhone PNG Animations
Currently I have a PNG animation on a timer that is firing every .01 seconds. However, performance isn't optimal and the animation is visibly slow. I have over 2000 images. Is there a better way to ...
4
votes
2answers
569 views
how to darken a UIImageView
I need to darken a UIImageView when it gets touched, almost exactly like icons on the springboard (home screen).
Should I be added UIView with a 0.5 alpha and black background. This seems clumsy. ...
4
votes
3answers
3k views
Can't set cornerRadius AND shadow on layer that has an image view stretched to its bounds?
This is stumping me. I have a UIView (call it "parent"). The bottommost subview of that view is a UIImageView (call it "child"), whose frame occupies the entirety of the "parent" bounds.
I want to ...
4
votes
4answers
3k views
iOS - Should changing the frame of a UIImageView resize its image?
Can someone answer this definitively? It seems that sometimes changing the frame of a UIImageView resizes its image and sometimes it doesn't.
I have loaded an image and created a UIImageView with it, ...