21
votes
4answers
22k 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?
20
votes
4answers
10k 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 ...
17
votes
7answers
37k 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 ...
9
votes
1answer
4k 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 ...
8
votes
5answers
8k views

Positioning the imageView of a UITableViewCell

In every UITableViewCell of a UITableView I'm placing an image in its imageView. However, if I increase the height of a cell using tableView:heightForRowAtIndexPath: to accomodate more text, I've ...
7
votes
1answer
340 views

Facebook app-style photo zooming from UITableView / Feed

In the Facebook app, when you're on the feed, and you tap on a photo to view it, a few things happen: The image animates/moves to the center of the screen, no matter where its current position in ...
6
votes
5answers
7k 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 ...
5
votes
4answers
3k views

How to set the table view cell accessory view to retain a previously initialized UIImageView?

Let's say I have a property in my view controller, defined as follows: @property (nonatomic, retain) UIImageView *checkmarkOffAccessoryView; I @synthesize this in the implementation, release it in ...
3
votes
3answers
1k views

UITableView image causes crash

I've done a million UITables - with subtitles, images, backgrounds, colors, text-styles - you name it. Suddenly, I'm crashing on this table, specifically on the line that calls for the image of the ...
3
votes
3answers
2k views

Resizing the imageView in a UITableView

I Created a grouped table view, and I noticed that placing an image in the imageView results in an image that is too large. It overlaps the rounded borders of the cell, which is horrible. I tried ...
2
votes
2answers
608 views

Xcode parsing RSS XML with images issue

I am trying to parse text with images in the UITableView and I can only see the text for every line but I can't see the images. Here is my code; - (UITableViewCell *)tableView:(UITableView ...
2
votes
1answer
2k views

Toggling display of image in UITableViewCell

Depending on the result of a condition, I want to display a UIImageView in a table cell. Otherwise display UITableViewCellAccessoryCheckmark. I'd like to construct the cell in IB. The part I'm not ...
2
votes
3answers
4k views

How do you center a UIImageView in UITableViewCell regardless of orientation?

I'm trying to center a UIImageView width-wise in a UITableViewCell with the following code: // self.cover_image is a UIImage variable // cell is a UITableCellView ...
2
votes
2answers
1k views

How can I stop my custom UITableViewCell backgroundImage from being stretchable?

If I create a background image for my table cell in the init method of my UITableViewCell subclass, the image comes out exactly how I drew it, and tableView:heightForRowAtIndexPath: simply adds a gap ...
2
votes
2answers
595 views

AFNetworking - Fade animation on image while scrolling UITableView

I have a Table View which displays images using lazy loading from AFNetworking with a placeholder image. I'm trying to accomplish a way to fade from the placeholder to the image when it's loaded. My ...
2
votes
2answers
415 views

Centering UIImageView in UItableViewCell doesn't work, how to fix?

I can subclass the cell and resolve the problem, but I'd like to know why this doesn't work. I set an image in the cell, then in this method, I move the image to the right: - ...
2
votes
4answers
624 views

UIButton with UIImages in a UITableViewCell - Overlapping etc

I have a problem with my UITableViewCell's. I am developing an application where certain posts in a feed may contain an image, and the button clicked will also need to contain a 'tag' number depending ...
2
votes
1answer
78 views

UIImage with rounded corner on left side monotouch iphone

I want to create a cell for my tableview like this image: As you can see, in this cell I have a UIImage that have some cornerradius on its left side. I use this code for add cornerradius to my ...
2
votes
1answer
553 views

Change image when a cell is selected

In my application I have an UITableView in the left as a menu. When I press a cell of the table, the view in the right change. My "menu" table have customs cells and I want to change the image of the ...
2
votes
1answer
169 views

Uitableview Photos Show Up then turn black

I am currently working with an UITableview which loads a users wall feed from Facebook. The problem I have is, the images that get put into the tableview load up fine but when the user scrolls, they ...
2
votes
1answer
662 views

Aligning an image in a UITableView

i've created a table that displays some user input alongside an assigned image (kind of like a wall post on a facebook app). However, the default alignment is centered along the height of the cell. I ...
2
votes
1answer
2k views

Animate UITableViewCell's imageView insertion?

Hey guys, (relatively, I believe) simple question here, I have a UITableViewController with its UITableView, with its determined number of cells. If a user taps on a cell, an image is inserted into ...
2
votes
0answers
219 views

UITableView can not scroll down. Keyboard is shown and not shown at the same time

I have a UITableView and its UITableViewCells can independently change their sizes via the function tableView:heightForRowAtIndexPath. They store UIImages of varying sizes. When I tap an image the ...
2
votes
1answer
703 views

Cannot change UIImageView frame in a custom table cell

I have a custom table cell. In it I have put (via the IB) an image view of a certain frame In 'cellForRowAtIndexPath', under certain conditions, I would like to modify the frame of this UIImageView, ...
2
votes
1answer
936 views

UIImageView simply does not appear in custom UITableViewCell

I have a table cell to which I'm adding subviews programmatically. All the textual subviews work fine, but I can't get an image subview working at all. You'll notice that I set the background color ...
2
votes
1answer
1k views

how can load images from plist in to UITableView?

I have stored the videos and the thumbnail images of the videos in Documents folder. And I have given the path in plist. In plist I took an array and I added directories to the array. And in the ...
1
vote
1answer
1k views

Custom UITableViewCell with large UIImageView causing scroll lag

I have a custom UITableViewCell that consists of a UIImageView and a UILabel. The cell is 320x104px and the imageView takes up the whole area with the label in front. There are only 8 cells. in ...
1
vote
3answers
298 views

UITableViewCell custom selectedBackgroundView issue

So I'm facing an issue with setting a custum selectedBackgroundView inside my UITableViewCell. My cell has a contentView that basically is a UIView (frame = 0,0,80,70) with a black background and an ...
1
vote
1answer
159 views

Puzzling UIImageView behavior in a UITableViewCell

I'm currently setting the UIImageView in my UITableViewCell like this: // in cellForRowAtIndexPath method [cell.imageView initWithImage:[UIImage imageNamed:@"myImage.png"]]; However the imageView ...
1
vote
3answers
3k views

UITableViewCell backgroundView image resizing?

I am using an image to display the whole content of a UITableViewCell and it's set using the backgroundView property. My problem is that it is always scaled to fit the cell. Is there a way to disable ...
1
vote
3answers
37 views

My UITableViewCell is reusing a previous cells UIImage

I have a UITable that reuses cells. Each cell has an image dependant on a condition. The correct images are always used however when cells are reused the old image is displayed behind the new one. I ...
1
vote
2answers
206 views

Asynchronous image loading in UITableViewCell memory issue

In my iPhone application I have a tableview with custom imageview and loading images from remote location using AsyncImageView class. It works nicely, but one issue is, if I scroll the table, cells ...
1
vote
2answers
105 views

Cell image in uitableview shows back up when scrolling

I'm doing the following to set the cell image if a message is unread - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell ...
1
vote
1answer
2k views

Set UIImageView Size in UITableViewCell when UIImage loaded from URL?

Loading images from URL into a uiimage and then adding those images to a uitableviewcell uiimageview, like below code. I do not know the image sizes, but need to force them to be 40x40 in the ...
1
vote
2answers
1k views

UITableView experiences choppy scrolling when cell has a UIImageView subview

This has been driving me crazy for the better part of the day. I've got a UITableView with UIImageViews. These imageviews load a locally saved PNG-file in the cellForRow-function of the tableview, ...
1
vote
3answers
1k views

How to remove image from the UITableView cell?

My table view looks in non-edit mode... In edit mode... I want to show a list image in the Department Name field in edit mode. It should be get hide in non-edit mode. I added this image using ...
1
vote
2answers
2k views

Adding images to a cell in table view

I am creating an app in which i want to display a table view and each cell of table view will be displaying 5 different images.Let me say in detail.I have 10 images and i want to show them in a table ...
1
vote
1answer
61 views

image of uitableviewcell is stretching

Below is how I initialize the style for a cell - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style ...
1
vote
2answers
205 views

ios - Uilabel & UIimageview in Uitableviewcell

I want this below type of layout in iPhone (using UItableview, Uitableviewcell, Uilabel and Uiimageview). (assume light blue dots == uiimageview) In each UItableviewcell I have 1 UIimageview and ...
1
vote
1answer
2k views

Customize table cells to display images

I am intending to add images (via URL string) into a table view. However, the photo images are not displayed in the table. Below is my code for this. - (UITableViewCell *)tableView:(UITableView ...
1
vote
2answers
148 views

help with memory issues on adding a UIImageView to a cell

I am adding an image to the first cell in a UITableView cellForRowAtIndexPath like so: if (row == 0) { UIImage *image = [UIImage imageNamed:@"numberOneIcon.png"]; //create a framework ...
1
vote
2answers
752 views

Why does my custom cell only highlight when the user removes their finger?

I have created a custom UITableViewCell, and set the backgroundView with the following code: - (void)layoutSubviews { [super layoutSubviews]; self.backgroundView = [[UIImageView alloc] ...
1
vote
1answer
68 views

UITableViewCell(s) with default image overwritten with other images upon scrolling

Oops,I am facing an issue with table view cells having no image,i.e. the cell with default image.Upon scrolling the default image disappears and some image from a cell is appearing on it.I have ...
1
vote
1answer
87 views

UIImageView one of cell contentView's views is not expanding along with its parent view

I have a UITableView where each cell contains one UIView in its contentView, let's call it V. V also has subViews, one UIImageView and UILabel.UIImage is just a white rounded rectangle I want my cell ...
1
vote
1answer
44 views

iOS imageView inside DetailView

I have simple Master-Detail Application: Menu with 3 Tabel Ciew Cells and if I click it I see DetailView with clicked cell's description ("Button 1", "Button 2" or "Button 3") on the center. I want ...
1
vote
1answer
220 views

Bottom margin appears within backgroundView (UIImageView) of UITableViewCell

I designed a custom tableview (based on jQuery Mobile's design) for a native iPhone app. The tableview was sliced into several images (headers, rows etc.) usable as background images within a ...
1
vote
2answers
233 views

Image Too Big In UITableView Cell

I am using: NSString *thearticleImage = entry.articleImage; NSRegularExpression *expression = [NSRegularExpression ...
1
vote
1answer
513 views

UITableViewCell rotate lags/hangs if I set UIImage as background view

I am setting a UIImage, via a UIImageView as my background view of a subclassed UITableViewCell like so: -(void)awakeFromNib { UIImage *backImg = [[UIImage imageNamed:@"CellBackground"] ...
1
vote
1answer
247 views

set UITableView image

I am trying to load locally stored images in a background thread and set them as UITableViewCell images. I keep getting an exception and don't really know how to approach it. Here is my code: - ...
1
vote
1answer
350 views

iPhone sdk - UIImageView overlap issue

I have a UITableView as shown in the attached image. I use a UIImageView in the custom cell of the UITableView and I rotate to some degrees. The images in the UIImageView are fit according to their ...

1 2 3 4
15 30 50 per page