0
votes
1answer
41 views

How to open image in full screen like facebook iphone app?

I'm new in ios development and i want to open images in fullscreen mode like facebook iphone app , also I want the event which let you drag image to down and then open the image in fullscreen mode. So ...
1
vote
3answers
64 views

ImageView center on top of scrollView

Ok so I have two UIImageViews which are in the subview of a UIScrollView. What I want is that when the user scrolls somewhere on the screen and clicks on a table(a button on the screen), a popup ...
1
vote
1answer
41 views

From iPhone 4 to iPhone 5 - UIMageView

I am working on my existing app to customize the screen to make compatible to iPhone 5 screen. However as you could see in the following figures, my imageview is not properly placed. I dont know what ...
0
votes
3answers
161 views

Detect UIImageView click in UITableViewCell

I have to make a call to specific number when imageview is clicked in tableviewcell.The number to which call is made is displayed in a label beside the imageview.But I couldn't get which cell is ...
0
votes
1answer
82 views

Prevent Stretching of image in Scrollview in iOS

I am adding a few buttons to the scrollview. I am setting a background of the button with an image. When you see the output, the image seems to get stretched. I would like to avoid this. So I have ...
-3
votes
2answers
150 views

Faster way to load an image from a URL and display it in an iPhone app

I am using the following code to display an image in my ImageView: imgbackBG.image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL ...
0
votes
3answers
138 views

Add some images to ScrollView from some URLs

I want to add 3 images from 3 URLs in ScrollView so how could I do? Please give me a good tutorial or some explanations!
0
votes
1answer
33 views

assigning uiimage to imageview

I'm not able execute a very simple statement. Its been frustrating one hour. self.mainImageView.image = [UIImage imageNamed:@"Radio"]; I've tried [self.mainImageView setImage:[UIImage ...
1
vote
1answer
90 views

Need a little help in loading image with absolute path

I have 400 images with repeating names, hierarchically divided among folders which i have included in my project, now i want to load images with the absolute path, I tried using imagenamed but instead ...
0
votes
1answer
78 views

ios google maps dont allow to add images onto it [closed]

I want to put static image using imageview on google maps. but its not displaying that image. so there is any idea to put up imageview on google map ? thanks in advance. plz help
0
votes
1answer
80 views

one finger image scaling / Cropping

I'm trying to implement one finger image scaling/Croping on iOS. Similar to Kirby Turner's one finger rotation. I'm looking for existing libraries or if you can help me with the code itself, it'll ...
0
votes
3answers
120 views

How to remove selected image from image view?

In my app, i have one method loadImage. The loadImage method use to add new images into imageView. -(void)loadimage:(int)index { ImageView = [[UIImageView alloc] ...
0
votes
2answers
211 views

Titanium ImageView animation width and height

I try to create an ImageView in Titanium like this: var animationView = Titanium.UI.createImageView ( { images:animationImages, duration:50, repeatCount:0, width: ...
0
votes
1answer
47 views

iOS RSS table image preview

I want to put an image preview on my table cells which derives from the RSS item that they load when pushed to. I'm not sure what UIImage method to use for cell.imageView.image.... Right now it's ...
0
votes
1answer
66 views

how to crate scrollview pagination with each page contain 4 image from plist/nsdictionary

i need to make an app that using a scrollview with pagecontrol to view image gallery, each page contains about 4 image and the image are loaded from plist or nsdictionary for example it will look like ...
0
votes
1answer
58 views

updating UIImageView creates memory leak

I have researched hundreds of posts, but still cannot figure out where my problem is. I have an array of image names and I'm trying to randomly select an image and update the imageview on an event. ...
1
vote
1answer
62 views

UIImageView focus, fade background and zoom

How would I go about making an image which I can tap which will trigger another view that has it zoomed and the other view slightly visible. Kinda like the twitter posting. I tap on the image, it ...
0
votes
2answers
94 views

Resize Album Artwork Form mp3 File

I have to resize an album artwork form the file I get with this code: for (NSString *format in [asset availableMetadataFormats]) { for (AVMetadataItem *item in [asset ...
1
vote
2answers
334 views

Fixed padding on ImageViews in UITableViewCells?

I am trying to center the UIImageView in one of the cells in my UITableView. To do this, I had to create a subclass of the UITableViewCell, and update the position of the imageView in ...
0
votes
1answer
132 views

iOS adding a top bar as a subview

I am currently working on an app for iPhone where I have an Imageview showing off some images and via swipe I can change the images. But I'm currently trying to add a subview that will be a top bar, ...
1
vote
4answers
96 views

using integer variable to image name in ios

I have a set of images named 0.png, 1.png, 2.png, etc... Say I only have five. I want to use an integer variable (infoInt) to determine what image is displayed. Since I'm naming the images in ...
2
votes
3answers
408 views

Image cropping issue in iOS

I am creating an iPhone app which has image cropping feature. In this, I am getting the photos from the UIImagePickerController and passing it for cropping. There it has a scrollview and the selected ...
0
votes
2answers
83 views

iOS- UImageView scale animation dose not work

I want to create an animation that the imageView will become more and more small and transparent, then disappear. I tried below code, it doesn't work, when run it will grow from 0.01 size to the ...
0
votes
1answer
82 views

What's the differences between imageview property and - (void)setImage:forState: in UIButton?

I just tried to set a new image (UIImage object) for my UIButton using myBtn.imageview.image = newimg; then I found it didn't work. After that I get the correct solution that using ...
1
vote
0answers
97 views

Image will shake when pinching it in ScrollView and ImageView

I followed the Standford CS193P course and wrote a program which can zoom a picture in an ImageView embedded in a ScrollView. When I'm pinching, it works, the picture will "shake" continually. I ...
0
votes
1answer
73 views

Trouble with animation on UIImageView

I have 7 images which i'm trying to make fade in/out of 1 ImageView. I have stored all the images in an array, and then have a loop to display each image and fade into the next, however, when i run ...
0
votes
1answer
68 views

iOS: Image view inside MapView

I'm starting to iOS develop. I have a MapView, and I want to show an image on the top of this MapView. But, when I drag a ImageView to my MapView, the ImageView superimposes my MapView. How can I ...
0
votes
1answer
23 views

How do I intercept a zoom-in event for imageview?

I'm displaying an image in an image-view, and I'm trying to overlay labels/text. I'd like to change the overlay when the image-view is zoomed in - what's the best way for me to detect the zoom-in ...
0
votes
2answers
116 views

Updating an imageview's image in a NIB

I have created multiple imageViews within one custom cell. How do I target to update a specific image view within the NIB? I have given it a restoration ID, can I access it using this?
1
vote
0answers
119 views

iphone scrollview and imageview autoresize

I am using xcode 4.3.2. I have an imageView inside a scrollView, with the contentMode for both set as aspect fill. My problem is after I rotate the orientation, the screen focuses on the center of ...
1
vote
0answers
121 views

What might cause a partially loaded JPEG in a UIImageView?

We are getting reports in the field, on both iOS and Android, of partially loaded profile images in our mobile app. Here is what it looks like (note that I have gaussian blurred part of the image to ...
0
votes
1answer
36 views

How to randomize 3 images in a ViewController?

In my app I have a main viewcontroller with an imageview. Every time the user goes back to this main view, I would like 1 of 3 images to appear, but I would like to randomize them. Does anyone know ...
-1
votes
5answers
80 views

geting crash when i display image into imageview? [closed]

i am new to iphone developement ... i am display image into imageview baesd 'i' values here my code is .h file is IBOutlet UIScrollView *imageScrollView; IBOutlet UIImageView *imageView; ...
1
vote
1answer
466 views

ios saving uilabel and uiimageview as uiimage

I'm trying to add text to an image bu adding a uilabel as subview to a uiimageview I already did that but I want to save them as an image I'm using render in context but it's not working here's my ...
0
votes
1answer
263 views

Image loads in simulator but not on device (Titanium Studio Android)

I'm new to Titanium Studio. I put all images(png format) in Images directory inside Resources folder (Resources\Images). When I set the image of an ImageView by mentioning the image name with path ...
0
votes
0answers
44 views

iOS - Can't “draw” ontop of imageview.image within scrollview

I want to implement a drawing method with touchesBegan and touchesMoved, etc. However, when I try to implement this, it gets overridden by the scrollview controller delegate and scrolling interferes ...
0
votes
0answers
82 views

iOS Apply Zoom level from one image to another

I have an app which displays an image, which is one side of a structure. By swiping left or right, the view will change the image to the side view of the structure. I have been asked to implement ...
1
vote
2answers
473 views

Scrolling an Image with ImageView iOS

I'm trying to make an app for a restaurant and the to display the food menu as a scrollable image. The image is pulled form a config file. - (void)viewDidLoad { [super viewDidLoad]; // back ...
0
votes
2answers
57 views

iphone development: reaching objects from different viewControllers

In my app, I have a problem, it sounds simple but I could not solve it. Well, here is the situation. I have two viewControllers. VC1 and VC2. In VC1 I have a button and an imageView. When the button ...
0
votes
1answer
133 views

iphone development: collision detection does not work for the animation

The code below simply creates small squares from top of the screen and moves to the bottom. I also have an UIImageView(player) which is controlled by the accelerometer on the x axis. The aim is not ...
0
votes
2answers
265 views

iphone development: animation with NSTimer

I wrote the code below to make move an image from the top to the button by using NSTimer. However when I run it I cannot have the images separately. Basically, the image leaves trace. what I want is ...
0
votes
1answer
108 views

uitableviewcell imageview resizes (horizontally only) when selected

hi i have a uitableviewcell, using the default uitableview cell provided in ios in the cell.imageView, its image is populated via an url of an image like so [cell.imageView setImageWithURL:[NSURL ...
-1
votes
1answer
80 views

how to add& remove overlay image using gridcell index

here is my code -(void)gridCell:(GridCell *)gCell didSelectImageAtIndex:(NSInteger)index imagSize:(CGRect )frameSize { UIImage *img=[UIImage imageNamed:@"Overlay"]; ...
0
votes
2answers
237 views

Image resizing in Scrollview

I have an ImageView in a ScrollView and resizing the ScrollView at some point. The problem is, that the ImageView is resizing to the same size as the ScrollView, but I want it to keep the original ...
-1
votes
1answer
607 views

Add UIImageView as Subview

I'm trying to create an animated UIImageView with certain image constraints. I want the UIImageView animating at a size of 141x262, and not the entire screen. Currently I have this code: CJ = ...
0
votes
1answer
58 views

Can't position the imageview to the center

- (void)centerScrollViewContents { CGSize boundsSize = self.scrollView.bounds.size; CGRect contentsFrame = self.imageView.frame; if (contentsFrame.size.width < boundsSize.width) { ...
0
votes
1answer
121 views

How to get tag value for an imageview in ipad

Hi i have an ipad app in that i have so many small images on view. each imageview having tag value. now my job is when ever the user touch any imageview which are avaialble on view we have to fetch ...
0
votes
1answer
684 views

how to resize textlabel in a tableview cell

I'm programming an app that is containing a RSS reader. The rss reader is downloading a title, description and a image. The image I placed in the accessoryview in the same cell as the description. The ...
0
votes
2answers
352 views

delay imageviews xcode

I hit the play button 6 image views will be filled with the pressed images, I want it to view 1, wait 1 second,view2, wait one second etc. which code should I be adding to: [imageview7 ...
0
votes
2answers
228 views

show image in different image view when button clicked.

I've been trying to make this code work but can't really get final part together. I got 2 rows of 6 image views, Imageview 1 to 6 and 7 to 12. First I click 6 buttons out of my 26 buttons (A-Z) ...

1 2