Tagged Questions
0
votes
2answers
38 views
if statement show image in cell
I would like to show a image in my cell, but only if the value of the JSON data is 1 (only 0 or 1 possible)
Maybe also if the value of the JSON data is 0 show different image, so each cell can show 2 ...
0
votes
3answers
63 views
UITableView: How to load an image only once then use it in all cells
I'm creating an app using the Twitter API and parsing with JSON and every time I load the image into the cells it's taking multiple images and everything runs slowly. How would I go on by getting the ...
2
votes
2answers
63 views
Images in UITableViewCells are loading wrong
I'm working on an app where I wanna show images, nearly as big as screensize, in a UITableView with custom cells.
The Images are loading good, a bit slow but they load, but when I scroll in the ...
0
votes
1answer
64 views
UIImageView in UITableViewCell not animating when an animated UIImage is assigned twice
I'm trying to display an animated UIImage in UITableViewCell's imageView. The animated image is shown after the first assignment but is not on every further attempt.
Here is the code of the ...
0
votes
1answer
83 views
UITableViewCell Dynamic Height based on UIImageView
I have grouped UITableView with cells size of 400. Inside I have UIImageView with images from NSURL. How can I make those images to determine uitableviewcell height ? How can I even get real image ...
0
votes
1answer
75 views
iOS - Image that is downloaded in the background and assigned to UITableViewCell imageView does not fill view
Similar things that don't really answer my issue
Objective C: How to fix aspect ratio of image (and not change to fit imageview frame)
Resize UIImage with aspect ratio?
What I am doing
User taps ...
2
votes
1answer
104 views
customize tableview background using tableView willDisplayCell: delegate method
I want to customize tableview background with my own images i am using the fallowing code to customize cell background view
-(void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell ...
0
votes
1answer
150 views
UIImage gradient
Well, I have an UITableView with an UIImage on each cell. Everything works fine, but now I would like to change the image and make it like the right picture of this link:
...
0
votes
0answers
42 views
UITableView with large images “shaking” on iPhone 4S
I built an app that parses some JSON asynchronously and downloads images to fill a table view.
This table view works fine on an iPhone 5 or in the simulator but the images are "shaky" on an iPhone 4S ...
1
vote
3answers
94 views
How to perform show and hide effect for image on UITableViewCell?
In my iPhone app I have to show check-mark image on left side of the cell, first time there is no image on the cell, when user select the cell it will show the check mark image on right side of the ...
-1
votes
1answer
75 views
UIImageView not loading in UITableViewCell untill scrolled
I am having a problem with a UIImageView I am setting inside tableview:cellForRowAtIndexPath: for some reason when the UITableView loads the bottom cell half in view dose not have the a Image loaded ...
0
votes
1answer
109 views
Avoiding blended layers when using resizableImages on iOS
I'm trying to avoid blended layers on iOS to improve performance. However, I notice that the resizable image I'm using for the backgroundView of my UITableViewCell is being marked as a blended layer:
...
0
votes
2answers
104 views
Auto resizing the height of TableViewCell to fit the UIImageVIew in iOS 6
I have uiimageview property to display image in my table view and would like to let one specific table view cell to change its height according to the height of the image in the uiimageview. Below is ...
0
votes
1answer
636 views
Crashing using resizableImageWithCapInsets:UIEdgeInsetsMake
Basically, I am using resizableImageWithCapInsets:UIEdgeInsetsMake. But I am not sure if this is the source of my crash. I am adding these resizable images on my table cell. I am not exactly sure on ...
0
votes
4answers
62 views
Loading Image from web make application hung
I'm loading image from web in my iPhone application. I'm using this image for the image view of Table cell. Few seconds after application launch all images are loaded completely.But scrolling of table ...
0
votes
1answer
74 views
UITableViewCell with UIImage scaling performance
The UITableViewCell has UIImage to be displayed within it.
Images are obtained from the server, and stored in NSDictionary as NSData.
This image is resized for non-retina devices using ...
2
votes
2answers
122 views
How to add an image outside a uitableviewcell
Everywhere people are asking how to add an image inside an Uitableview. Well, I want the opposite, how can I make the cell shorter and add an image in front of it ?
Just like the ...
0
votes
1answer
584 views
How to create a UIImage with a transparent background
I am dynamically creating a (drawing my own custom) UIImage for the 'UIImageView' property on a UITableViewCell.
When a user selects the tableView cell, the cell background turns blue but my custom ...
1
vote
2answers
114 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
229 views
How to add multiple pictures to custom tableviewcells with tag or identifier
I want to add pictures from an NSMutableArray to custom cells in a tableview. There will be four or more images in every cell. So here's my problem:
If I refer to indexPath.row the custom cells would ...
1
vote
1answer
826 views
Displaying FB Profile Pic of loggedIn User in UITableView Cell
I am a new one to facebook integration. After I've gone through so many tutorials I've understood something from facebook SDK.
Please help me regarding this.
- (void)apiGraphMe
{
currentAPICall = ...
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
1answer
67 views
UIImage not displaying in Table View
I am trying to display image in each row. I have a switch to decide where is which picture. I don't get any picture displayed though. Anybody experiencing same issue?
Here is the code:
...
0
votes
2answers
654 views
Content mode issue in UIImageView when its set to ASpectFill
I need to load an image in a cell and i get a white border along my image.I'm calling the image from the link and it looks like this.
but my image looks like
i'm getting a white border in my ...
0
votes
2answers
463 views
iOS - when to remove subviews from UITableViewCell
I have a UITableView which a UIImage is added as a subview to each cell of it. The images are PNG transparent. The problem is when I scroll through the UITableView, the images get overlapped and then ...
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 ...
0
votes
1answer
612 views
Setting dynamic height for UITableViewCell with only image (variable height) inside it
I have a UITableView whose cells will only contain images of variable heights, I set the row height dynamically according to image, it doesnt work perfectly, the images while scrolling sometimes get ...
0
votes
2answers
2k views
Objective c - Draw image with rounded corners in drawRect
I have a UITableViewCell subclass with a UIImage as property.
I want to draw the image in drawRect, and to be efficient because this is a table view cell.
I know how to draw the image as it is:
...
1
vote
1answer
271 views
How add two images side by side in a UITableViewCell?
How add two images side by side in a UITableViewCell?
The style of UITableViewCell is UITableViewCellStyleSubtitle.
Thanks in advance
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 ...
0
votes
3answers
276 views
UIImage in UITableViewCell
I'm trying to put image in UITableViewCell. I use SSMessages style for my messages.
Tried something like cell.imageView.image = [UIImage imageNamed:message.messageText]; but it isn't work. Any ...
4
votes
6answers
668 views
Resize the Table cell height as per downloaded image height
I am getting the image's URL at run time and I want to download & display these images in a table. Images are going to be download asynchronously. What is more important is that I want to display ...
0
votes
1answer
130 views
Catch uiimageviewe touch in uitableviewcell
I have following code that does not work: I never get to goToFoodDetail.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString ...
0
votes
1answer
166 views
Why is my UITableViewCell imageView image disappearing?
I have an image in a cell's imageView, but If I scroll the uitableview up so that that particular cell goes off of the screen, then let it come back down, the imageView disappears.
How can I fix ...
0
votes
2answers
360 views
Round UIImages in UITableView causes slowdown
When I try to round the UIImages in all custom UITableViewCells, the scrolling of the UITableView is significant slower and not fluid. Is there any better way to to this?
- (UITableViewCell ...
0
votes
1answer
394 views
How to set the imageView property in a UITableCellView to show only a background color?
I have a custom class inheriting from UITableViewCell class that shows either an image (left to the title) or a generic dark-colored square if the image is not available). The following code shows a ...
0
votes
0answers
225 views
Use separate images or setImageEdgeInsets?
I have a button in a tableview cell. The tableview would typically hold 10-30 cells.
Depending on a user setting, the image on the button can be displayed at a different size. Note that the button ...
1
vote
3answers
2k views
Add icon images to UITableview array
I would like to add a different icon image i.e. image1.png, image2.png etc to the following UITableview array. Really need someones help. Thanks in advance.
{
self = [super init];
if (self) {
// ...
1
vote
3answers
585 views
Different first row for a UITableView
I need a UITableView whose first row should show a logo, while other rows should show the other table datas.
I tried the following code:
if(indexPath.row == 0) {
//Code for imageview
} else {
...
1
vote
4answers
338 views
Displaying UIImageView in a subclass of UITableViewCell in cellForRowAtIndexPath
I have a property of DotImageView in my UITableViewCell subclass.
@property (nonatomic, retain) IBOutlet UIImageView *DotImageView;
I try to display it like this in the cellForRowAtIndexPath ...
0
votes
1answer
341 views
Using dequeueReusableCellWithIdentifier causes images used as a repeating background to leak out of the cell
Am trying to use 3 images as the background for a cell. a top image, a middle (repeating image) and a bottom image. If I use a dequeueReusableCellWithIdentifier then it works fine, however as soon as ...
0
votes
3answers
2k views
iOS 5 - Getting image like add contact button
I want to customize the accessory view of a UITableViewCell, so I need a UIImage.
I want that image to be like the "Add Contact" type button (That blue plus).
How can I do that?
0
votes
0answers
87 views
Parses the data into a table using CoreData of downloading
2011-12-07 21:49:30.523 Flow[3185:207] theSearchBar.text : (null)
2011-12-07 21:49:30.524 Flow[3185:207] NSPredicate : publish == 1
2011-12-07 21:49:33.285 Flow[3185:207] Presenting action sheet ...
0
votes
2answers
92 views
Is there a way to use a random project png image for a UITableViewCell?
I am populating a standard UITableViewCell with an image as follows:
cell.imageView.image = [UIImage imageNamed:@"someImageName.png"];
Is there a way to have "someImageName.png" be a random png ...
0
votes
2answers
570 views
iPhone - button in UITableViewCell does not change image
I'm trying to do some cell creation using Xcode 4.2 storyboarding, and using Interface Builder to create a custom cell. I get the cell created fine, and I have a button within it, I am trying to have ...
0
votes
1answer
145 views
UITableViewCell loading in background and update to specific tableViewCell when finish
I want to make tableView like "Sections" in SBS News Australia app. The list is loaded first (the image still show default image when the background thread get the image from url) and after the image ...
0
votes
1answer
58 views
UIImage implementation / paging?
From the UIImage documentation:
In low-memory situations, image data may be purged from a UIImage
object to free up memory on the system. This purging behavior affects
only the image data ...
-1
votes
1answer
169 views
Setting image to UIImageView in tableview cell makes the scrolling and rotation slow
I've a UIImageView in my TableViewCell. When i don't set the image, scrolling and the rotation of the UI works very smoothly. But when the images are displayed in the cells, the scrolling and the ...
0
votes
1answer
682 views
Speed up UITableView with UIImages as backgrounds and UIImages in the detailView
I'm making an inventory app and have subclassed a grouped UITableView that I made the background a UIImage that I set after initialization based in the location (top, middle, bottom, single). Then I ...
0
votes
1answer
501 views
Display image on tableview inside uitbaleviewcell
The following is the code I am using to display image in the table view and its name. It works fine however when we have lot of images inside the folder the app crashes. Any help is greatly ...




