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 ...
0
votes
1answer
11 views
a UIView scaled with animateWithDuration doesn't scale its subviews
I have a UIView that contains two UIImageViews.
when I perform animateWithDuration and change its frame (x,y,width and height) , it's subviews aren't resized according to its frame.
How can this be ...
0
votes
2answers
24 views
Displaying different images for iPhone 4 & 5
This seems to be an interesting problem that I'm getting. I'm developing an iPhone app for iOS 6+ devices and optimizing the images for both iPhone 4 & 5. Now I have implemented this into my ...
0
votes
0answers
20 views
how long does it take to switch a UIImageview image
How long does it take to switch a UIImageview image for each version of the iPhone on average?
I'm trying to get metering enabled on an AVAudioPlayer and I want to know how often I chould check ...
0
votes
2answers
43 views
how to show images at cell.imageview.image from NSArray?
Image Array=[NSArray arrayWithObjects:[UIImage imageNamed:@"1 (1).gif"],
[UIImage imageNamed:@"1 (2).gif"],[UIImage imageNamed:@"1 (3).gif"],[UIImage imageNamed:@"1 (4).gif"],[UIImage ...
1
vote
2answers
34 views
How to add image with text into UIAlertView?
I want to add image with some text into UIAlertView like given image below
Here is my code
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Please use Settings( ) to ...
0
votes
1answer
18 views
UIImageView in a custom UITableCiewCell dimensions and resolution
I'm trying to use a check mark in the UITablewViewCell which is a custom cell that has 3 labels. The problem is that no matter what resolution or dimensions I use for the check mark image, it's looks ...
0
votes
2answers
49 views
UITableView with UIImageViews showing large UIImages - Scrolling Performance
I have a UITableView, with each cell containing 4 UIImageView s. I am loading the images asynchronously (using a third party UIImageView extension for asynchronous loading). And also doing the ...
0
votes
1answer
17 views
Problems Displaying Image Using APParallaxHeader
I have a view titled HomeViewController that I embedded inside a navigation view controller. Inside the view, I dragged a table view and linked it using IBOutlet. I added the necessary code from the ...
0
votes
2answers
36 views
UITableView with images crashes app when I scroll down a lot
I have this simple UITableView and each cell has an image corresponding to it. All I'm doing is displaying a title for the image and the image itself in each cell. Here is my cellForRowAtIndexPath:
- ...
0
votes
5answers
58 views
Accessing images from nsbundle
I have a framework which is trying to access xib's and images from a bundle. I am able to access the xib fine but unable to load the images in UIImageView. I even check if the file exists and the ...
0
votes
3answers
58 views
How to add a UIImage to an email using MFMailComposerViewController? [duplicate]
I'm using the MFMailComposerViewController to send an email from an iOS app. The mail works except when trying to add an image. The issue with the image for me is getting it using
I've seen other ...
0
votes
2answers
36 views
Getting strange behaviour on changing image in iphone sdk
I have 4 image views which I am changing images when user move to next and previos page as below images show. All 4 image view are attached with single IBOutletCollection and I differentiate with ...
0
votes
0answers
9 views
Problems with CALayer not properly overlaying parent UIImageView's image property
StackOverflow'ers!
I have been trying to get Core Animation integration working in my application and find myself screaming in frustration at the problems that have arisen...
I am trying to:
Make a ...
1
vote
1answer
23 views
tapping on UIImageView and opening a bigger Image
I have an app that displays, in a tableview, an image and some details. I'm trying to make it so that, when someone touches on the image displayed in my table view, the app opens the same image in a ...
0
votes
1answer
35 views
Unrecognized selector setting alpha for a UIImageView
I'm getting an unrecognized selector exception trying to set the alpha on a UIImageView, but I don't understand why this should be seeing a UIImageView inherits from UIView and alpha is a property of ...
0
votes
0answers
26 views
Correct place to position UIImageView in View lifecycle
I am trying to position an image, using values calculated from the frame size during the loading phase of my UIViewController.
I have a method - (void) redrawImage that does all the calculations to ...
1
vote
1answer
30 views
Loading Bitmaps and display in ImageView Efficiently
My program is to decode a bitmap and display it.
The origin decode code and display code works perfect on my pc.
When I use the code in my android device, the code also can decode the stream.
The ...
0
votes
3answers
82 views
how to make an ImageView zoomable with or without ScrollView.?
I have an UImageView in my IB and added a map image on that UImageView. I want to make that image pinch zoomable.
Here is my code:
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = ...
0
votes
2answers
32 views
How to make a superview resize automatically same size and coordinate with its subview?
I have a UIVIew that contains an UIImageView. I want to make the UIView same size and same coordinate with the UIImageView. How can I do it?
0
votes
2answers
34 views
How to embed images and sounds in an iPhone app?
I am having a real hard time understanding how to embed many images and sounds in an iPhone app. When I say embed, I mean I want the images and sounds to be downloaded with the app, and some of those ...
0
votes
1answer
35 views
A few questions regarding UILabel and UIImageView placement handling?
I have two questions regarding the placement and handling UILabel's and UIImageView's:
a. I'd like to know if its possible to detect the location of the "edge" of the text in a UILabel, to put a ...
1
vote
1answer
41 views
How to implement this method in my NSXMLParser to extract images
i'm new in iOS development, and at this moment i have implemented the NSXMLparser , but i really don't know how to separate tags with the same name, but different content, like the ...
0
votes
1answer
38 views
UITableViewCell change Image without calling Reload (LazyLoading)
I have looked at some sample LazyLoading to load the image whenever the cells are visible and the loading is complete. I noticed they do not call ReloadData How do I change the images without having ...
-3
votes
1answer
37 views
Displaying an image coming from database through web service in Collection View [closed]
I am new to iOS and trying to write my apps as pure iOS 5 app using the new storyboard feature.
I want to calling services and displays all images that coming on Collection View.
So, I need to save ...
-1
votes
0answers
29 views
UIImageView instead of UIActivityIndicatorView - Xcode
I have local HTML files in my project and UIWebViews that load them. I currently have a UIActivityIndicatorView set when the UIWebView is loading. I want to replace this with a Single Image that does ...
1
vote
2answers
41 views
How to Drag a UIImageView?
Here is my situation: I have 3 UIImageViews. Two of them will act as reactors (the ones that the third one would be dragged to). The third one, like mentioned, will be draggable to one of the two ...
0
votes
1answer
35 views
How can i retrieve a image from Parse.com via query at iOS?
I am using Parse.com for retrieving my data.I want to retrieve my images from parse via pf query but my approach does not working.I get nothing where my UIImageView is. Here is my code:
PFQuery ...
0
votes
0answers
28 views
Setting Background Image for UITextView
I have managed to get my UIImageView to show behind my UITextView and it is just fine on one view but on this one, some of the text is getting highlighted and so the image doesn't show behind that ...
0
votes
1answer
16 views
Constricting UISwipeGestureRecognizer to only detect swipes within the area of a IUImageView
I am currently using the following code to detect swipe gestures in my app:
- (IBAction)swiperMethod:(UISwipeGestureRecognizer *)sender {
_sampleText.text=@"hi";
}
- (void)viewDidLoad
{
...
0
votes
1answer
19 views
Trouble getting UISwipeGestureRecognizer working, never detecting swipes?
I am trying to setup a very simple swipe recognizer to change the text inside a text label upon swiping. I tried to follow apple's tutorial here, but the swipe is apparently never recognized, because ...
-1
votes
1answer
34 views
Store Camera Roll In Local SQLite Database [closed]
I'm making an iOS app that requires keeping track of pictures in the camera roll and photostream. I would like to be able to store information about each picture in a local SQLite database. Each time ...
0
votes
4answers
111 views
How can i make clickable uiimage?
I have one menubar as a uiimage. I want to make 5 menu on this menubar are clickable and link to another view. Can anyone tell me the way i can do that? I found people using uibutton on the uiimage, ...
0
votes
0answers
24 views
drawing mask and rendering out the result to image iOS
I am drawing an image in a mask, which is working perfectly in the device display,
imageView.layer.mask = maskLayer;
BUT when I render the image using renderInContext (for image output) the mask ...
0
votes
2answers
24 views
UImagview Fading and then hiding
I want the imageview to fade and then hide completely.
Here is my code
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"];
...
0
votes
1answer
33 views
UIImageView shows image on simulator but not on iPhone
I've been getting a very weird bug with one of my UIImageViews. I have a UITableView that lists items, and each cell is an item. Each item cell has a thumbnail image, a title, and a subtitle. I am ...
2
votes
2answers
47 views
Loading images for animation in UIImageView - iOS
I have around 300 images to be loaded for animation the images are named loading001.png, loading002.png, loading003.png, loading004.png………loading300.png
I am doing it in the following way.
.h file
...
-1
votes
1answer
35 views
Get back selected photo on camera roll - Objective C [closed]
I'm trying to build a photo app and got a doubt like if I select an album from camera roll and then selecting a photo from the album and will get the photo to next view. And when I get back from the ...
1
vote
4answers
85 views
Swipegesture Recognize in IOS
I am new to iOS.
I am developing an app where I have 2 NSMutableArray. I want to load the array images into ImageView.
I want to take the first image and add it to an ImageView. When the use swipes ...
0
votes
1answer
26 views
UIViewContentModeScaleAspectFill of UIimageview working proper in iphone 4, but not in iphone4s
I have written one code for scaling UIImageview. My problem is imageview is scaling correctly in iphone 4 , but not in iphone4s.
My code is below:
UIImageView *imgBG1 = [[UIImageView alloc]init];
...
0
votes
3answers
56 views
identify if there is image on the UIImageview
I am having trouble on identifying if there is an image on the UIImageView.
First of all, i have a static table with uiimageview inside.
when user press new page or load the data, they both proceed ...
0
votes
2answers
41 views
UIImage as patterns
I am trying to get UIImage as a pattern. So, I have one image and I want to fill UIImageView with this image without stretching the pattern.
I know you can get UIColor with pattern but this is not ...
0
votes
1answer
23 views
MPMoviePlayerController view under another view
If I do this:
self.productVideo = [[MPMoviePlayerController alloc] initWithContentURL:movieClip];
self.productVideo.controlStyle = MPMovieControlStyleNone;
self.productVideo.shouldAutoplay = YES;
...
0
votes
1answer
20 views
User setting background image
Within my IOS application I would like to allow users to set their own background image. They pick an image from their photo library and then they set it as the background of the application. There is ...
0
votes
1answer
6 views
Adding UILabel to UIImageView in CellForRow
I have a customCell in StoryBoard "CategoryCell", I have UIImageView with the cell which is also part of the cell also tied up in StoryBoard. The UIImageView is filled with a plain yellow color. I ...
0
votes
5answers
102 views
How to set different images for every cell in uiTableView.?
I have tableView and i want to set the different image for every cell in my tableView based of certain condition but i am getting the image of last satisfied condition for all cells.
here is my code:
...
1
vote
1answer
50 views
How to retrive single image from png file in iphone
I can access image's by using [UIImage imageNamed:@"nameOfPng.png"]; if I have a single image in a .png file. But if we are having a multiple images in a .png file, how do we access sub images from a ...
-1
votes
3answers
38 views
Converting the drawn view into UIImage and add to UIImageView in iphone
I have app in which i am making sign with finger it works fine and it draws line but i want to save those lines drawn signature as image in ImageView to show screen but it is not showing i am using ...
4
votes
1answer
83 views
How to tint a transparent png image in iOS?
I have a transparent png image with white background. Is there anyway to tint the transparent part? I tried many times but I can only tint the white background, not the transparent part. Thanks for ...
0
votes
2answers
28 views
drag and drop uiimage into another uiimageview
I am using following code snippt to drag and drop uiimageview
UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(move:)];
[panRecognizer ...
1
vote
0answers
23 views
CATransition animation zoom change image (UIImageView)
I try to achieve zooming animation image change on UIImageView.
So far I created a transition of type moveIn and subtype fromLeft:
CATransition *transition = [CATransition animation];
[transition ...





