Tagged Questions
0
votes
1answer
32 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
21 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 ...
0
votes
3answers
64 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
1answer
35 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 ...
-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
91 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
1answer
32 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
44 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
30 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
83 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
25 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
5answers
98 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:
...
0
votes
2answers
27 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
votes
0answers
48 views
UITapGestureRecognizer Freeze
I have some picture on a view, and I want that when user double-taps on it, to have the images move from point A to point B.
Code for recognize doubleTap
[super viewDidLoad];
...
0
votes
2answers
44 views
Delay between animation cycle on a UIImageView
I have an UIImageView called imgView, where i have an array of images, like,
imageArray objects: [UIImage imageNamed:@"test4.png"],
[UIImage imageNamed:@"test5.png"],
...
0
votes
0answers
9 views
How to put a UIButton or UITableview ontop of a UIView / Kenburns for IOS
I found a plugin that animates a UIView . I want to add a button to the top of the Ken burns view I have tried a number of things but to no avail.
I know I added the button to the view because I put ...
1
vote
2answers
43 views
Moving Background of a View
I have a really large image that I want to use as a background image of a view. However, I don't want to display the entire image at once; I want only a part of the image to be displayed, and then I ...
1
vote
1answer
18 views
Scale to fit cuts image
I have an UIImageView with the image of a gradient with a thin line at the bottom. As the image isn't the same size as the imageview I want to scale it in some way. I don't care if I stretch the image ...
0
votes
3answers
20 views
Others UIImageView NSMutableArray
I have 5 pictures and i want to add to array
code:
#import "ViewController.h"
UIImageView *pic;
NSMutableArray *picArray;
@interface ViewController ()
@property (nonatomic, strong) NSMutableArray ...
0
votes
0answers
8 views
Enable recyleBin for LongpressGesture
I have imageView inside view. When i use UILongPressGesture, i need to enable recyleBin and drag my image to that recyleBin. How to do that?
code:
UILongPressGestureRecognizer ...
0
votes
3answers
33 views
Objective C: Keep Image After App Termination
I am making an app that downloads files from an online server by clicking an Icon representing the file to be downloaded, then the file will be saved to the app's sandbox.
I have managed to do those ...
2
votes
1answer
98 views
Animating UIImageView with colorWithPatternImage
I have a UIImageView that is animated using the following code:
NSMutableArray *imageArray = [[NSMutableArray alloc] init];
for(int i = 1; i < 15; i++) {
NSString *str = [NSString ...
0
votes
2answers
42 views
How to rotate a image (globe) around Y axis?
I have an image of globe which I want to rotate continuously around Y-axis. I also want to simulate it as an 3D rotation. I found some code using CABasicLayer and CALayer, but they rotate an image ...
0
votes
0answers
41 views
Remove overlay image in cameraview
I have imageview under scrollview. In imageview having images. When i click particular image from scrollview, the image is appear overlay of cameraview. I used doubleTap for removing overlay image. ...
0
votes
0answers
16 views
Does networkActivityIndicatorVisible work in applicationDidBecomeActive?
I am trying to call the network indicator and then dismiss it after this code as you can see below but it does not show in the status bar. What am I doing wrong? I thought it was just that the network ...
-2
votes
1answer
43 views
How can i remove the images from the memory? [closed]
There are 900+ pictures and they display 30 by 30 when i click next button. I remove "view" for every click to next button and i create new one for next 30 pictures. However when the number of ...
-1
votes
0answers
30 views
Clean tile image from Photoscroller sample [closed]
I tried to understand photoscroller example from Apple.
...
0
votes
1answer
36 views
XCode - Referring to a UIImageView variable through another string variable?
Is it possible to use a string variable to refer to a UIImageView variable and change the image? The string variable is created by adding an "s" to the start of the tag of the button pressed. This is ...
0
votes
1answer
33 views
Cannot get UIImage to show in a UICollectionViewCell
I'm unable to set an image in a UICollectionViewCell, the UILabel however, works fine. Here's the relevant code:
// CatagoryViewCell.m
#import "CatagoryViewCell.h"
@implementation CatagoryViewCell
...
-2
votes
1answer
77 views
How to detect objects from Image Processing in iOS?
I have a image and the image have in it A glass a cup , two spoon.
This image is showing on the iPad.
Now I want when user touch the spoon only, the spoon color will become green rest of the image ...
0
votes
2answers
26 views
Image Bouncing while duing interface orientation
I am having paging in my application. Each page having Image. during the orientation i am changing the frame according to the landscape and portrait orientation. but image is bouncing. It should not ...
0
votes
0answers
29 views
ScrollView Change Image horizontally
I want scrollViewDidScroll delegate method change image only in 10% User can scroll
my code looks like:
- (void)viewDidLoad
{
[self setupPage];
[super viewDidLoad];
}
#pragma mark -
#pragma mark ...
0
votes
1answer
42 views
Making a UIButton change a UIImageView image
I'm very new to programming and objective c so please go easy on me.
I would like a UIButton (which I'm using as an IBAction) to change an the image in a UIImageView when pressed. I put the ...
0
votes
1answer
45 views
Get height based on fixed width UIImageView image
How can I get height for UIImageView based on fixed (310.0f) UIImageView width for real looking image ?
So the thing should work for placing UIImageViews in UITableViewCells (thats not important for ...
0
votes
1answer
40 views
How Can We Close NSFileManager?
In my ios application, I use a lot of images(about one thousand) to show info about products. Then i got an error like this in run time;
ImageIO: CGImageRead_mapData 'open' failed
error = 24 ...
0
votes
1answer
60 views
UIImageView how to cut off Top and Bottom?
My app load an Image in a DetailView. This Detailview is full of information, so I have to win some space. The Image i want to display is really small: 132 × 99 so i have to scale it to the whole ...
0
votes
1answer
28 views
UIImageView resizes automatically on UICollectionViewCell, for no apparent reason
I'm trying to show a few images using UICollectionView, I already have the animation i wanted (to zoom in the "active" cell) and it works perfect when i just use the cell.
When i add an image to the ...
0
votes
0answers
51 views
UIImageView dynamic image fixed width
I would like a UIImageView around 300 px width and dynamic height. Again, images shouldn't be streched too much, but just nice looking "golden-middle". Best example is 9gag application. Images are ...
0
votes
0answers
32 views
UIScrollView with a UIImageView in it
I followed the first section of this tutorial: http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content and am coming up with a black screen when I press on the table cell ...
0
votes
0answers
25 views
Image button that works like HTML image map
Wavii app has buttons that work like HTML image map and look like 3D buttons, see below:
E.g. when you click on the area of FB/Twiiter/e-mail button, it gets highlighted pretty accurately.
I am ...
0
votes
1answer
46 views
UIImageView within UIView doesn't respect constraint
I have a UIView of size width: 285 and height: 243. Within that view, I have a UIImageView (it is within that UIView according to Storyboard). That UIImageView has width 283 and height 241 (so that ...
0
votes
3answers
61 views
how to change uiimageview image's programmatically
In my ios application i create uiimageviews programmatically like that,
for (int i=0; i<20; i++) {
productID=[products objectAtIndex:i];
...
0
votes
0answers
27 views
Is there a way to preserve the center of an UIImage (Inverted Cap Insets)
Is there a way to preserve the center of an image rather then the insets. Like an inverted Cap Inset?
0
votes
6answers
80 views
Click on UIButton Does Not Work if it's Added as Subview to UIImageView
I have a simple UIImageView that is animated, and i need to detect a tap on it. I've added a UIButton that is a subview of this UIImageView. However,the tap on it does not work. I've already tested ...
1
vote
1answer
36 views
ImageView Animation getting more Memory
My application is in ARC.
I am using image Animation in imageView but after some period of time my application crashed with low memory error.
I am not getting any error message in Log but in ...
0
votes
0answers
29 views
Taking pictures with a transparant overlay
My app can take pictures and when taking a picture an overlay is shown which fills the whole screen and most of it is transparant. When I take a picture the image is rendered and the overlay is drawn ...
0
votes
1answer
18 views
Show layer while taking picture [duplicate]
I was wondering if its possible to show a layer (UIImageView?) on top of the camera view while taking a picture. I know its easy to implement a layer after the photo is taken but I want to show that ...
-1
votes
2answers
47 views
Remove 'hidden' images from UIScrollView
I have a scrollView that shows images set by url. Now I only want the visible image and the previous and next image to be pre-loaded onto the scrollView to reduce memory usage. How do I accomplish ...
-2
votes
1answer
53 views
moving a UIImageView one at a time using UIPanGestureRecognizer
I have some questions about using a UIPanGestureRecognizer. Is it possible to use it in moving a UIImageView one at a time.
The flow is like this. I have 2 images. image A and B. If you select image ...
1
vote
1answer
46 views
Is there any method called directly after drawRect:?
I have two UIView subclasses, say "Class A" and "Class B". Class A, in its initializer, has the code [self addSubview:instanceOfClassB];. And in Class B's drawRect: is the line of code [self ...





