active questions tagged uitableview - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:33:05Z http://stackoverflow.com/feeds/tag/uitableview http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1831770/how-to-save-the-order-in-the-rearranged-uitable-view 0 How to save the order in the rearranged uitable view ? hib 2009-12-02T09:35:49Z 2009-12-08T11:28:13Z <p>Hi all,</p> <p>I have come across this situation that after user has tapped on edit and the table turns into editing mode then user moves one of the rows.</p> <p>So my question is :currently the source array comes from web service so after moving the rows where to store the rearrangement i.e. rank that the user has given so next time the user comes back to the tab or relaunches the app the user gets the same reordered rows as the user has done before</p> <p>thanks..</p> http://stackoverflow.com/questions/1860120/label-in-uitableviewcell-blocking-background 0 Label in UITableViewCell blocking background rob5408 2009-12-07T13:53:41Z 2009-12-08T07:48:17Z <p>I'm having an issue with the label inside of my UITableViewCell blocking the background image. It seems as though it only happens on the unselected state. I tried setting the background colors to clear but that didn't do it. It's adopting the tableview's background color. Do I have to set the labels background image too?</p> <pre><code>// Neither of these worked... cell.textLabel.backgroundColor = [UIColor clearColor]; cell.contentView.backgroundColor = [UIColor clearColor]; </code></pre> <p><img src="http://img51.imageshack.us/img51/4679/uitableviewrow.png" alt="screen shot"></p> <p>Here is my cellForRowAtIndexPath</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SimpleTableIdentifier"]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"SimpleTableIdentifier"] autorelease]; } UIImage *image = [UIImage imageNamed:@"TableRow.png"]; UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; imageView.contentMode = UIViewContentModeScaleToFill; cell.backgroundView = imageView; [imageView release]; UIImage *imageSelected = [UIImage imageNamed:@"TableRowSelected.png"]; UIImageView *imageViewSelected = [[UIImageView alloc] initWithImage:imageSelected]; imageViewSelected.contentMode = UIViewContentModeScaleToFill; cell.selectedBackgroundView = imageViewSelected; [imageViewSelected release]; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; cell.textLabel.textColor = [UIColor whiteColor]; cell.textLabel.text = [[self.trivia.questionsets objectAtIndex:indexPath.row] valueForKeyPath:@"title"]; return cell; } </code></pre> http://stackoverflow.com/questions/1865154/reorder-row-in-uiitableview 0 reorder row in uiitableview Nithin 2009-12-08T07:05:13Z 2009-12-08T07:10:49Z <p>In my application, i want the users to reorder the contents of the differnt rows as well as to delete the rows they wish to. How to implement that</p> http://stackoverflow.com/questions/1865085/scrolling-in-uitableview 0 Scrolling In Uitableview Gani 2009-12-08T06:47:44Z 2009-12-08T06:47:44Z <p>hi everyone,</p> <p>i have a requirement where i am fetching 20 items and putting it on a tableview and i want to fetch another 20 when user scroll to maximum row of the current view. is there anyway i can do that</p> http://stackoverflow.com/questions/1842560/uitableview-wont-scroll-after-editing-view-frame-and-origin 0 UITableView won't scroll after editing view frame and origin oohaba 2009-12-03T20:10:24Z 2009-12-08T03:08:18Z <p>I'm trying to implement a UITextView in a table cell at the bottom of a table view.</p> <p>I've tried the suggestions here <a href="http://stackoverflow.com/questions/594181/uitableview-and-keyboard-scrolling-problem">http://stackoverflow.com/questions/594181/uitableview-and-keyboard-scrolling-problem</a>, and other solutions as well, but they're a bit different because I have to artificially add extra height to the current view in order to create space for the keyboard.</p> <p>Here's what I added to the previous solution in order to port it to my app.</p> <pre><code>-(void) keyboardWillShow:(NSNotification *)note { CGRect frame = self.view.frame; frame.size.height += keyboardHeight; frame.origin.y -= keyboardHeight; self.view.frame = frame; } -(void) keyboardWillHide:(NSNotification *)note { CGRect frame = self.view.frame; frame.size.height -= keyboardHeight; frame.origin.y += keyboardHeight; } </code></pre> <p>Doing this will correctly add the height to the view and scroll to the cell, but after restoring the original view's height, scrolling beyond the current visible view becomes impossible, even though there is valid content outside of the boundaries (I see the text view before the scroll bar bounces back).<br> If I try to save the tableview's frame or bounds (not the view) in keyboardWillShow and restore them in keyboardWillHide, the scrolling will be restored, but the view will be cut in half.</p> <p>Are there any remedies to this besides hard-coding the additional height to the bottom of the view? </p> http://stackoverflow.com/questions/1862141/y-n-uitableview-question 0 Y/N: UitableView Question Steve 2009-12-07T19:00:59Z 2009-12-07T19:06:40Z <p>Y/N: Is it possible to set <em>one</em> cell inside of a uitableview that has <em>multiple</em> cells to have a dynamic height that changes depending on the value of text it holds?</p> http://stackoverflow.com/questions/1856537/how-do-you-hide-the-reorder-control-in-a-uitableviewcell-without-using-reload 0 How do you hide the reorder control in a UITableViewCell without using reload? mathew 2009-12-06T20:41:53Z 2009-12-06T21:02:17Z <p>In my app, when a user touches a table cell, the cell is disabled and the cell's reorder control disappears. If they touch it again, the cell is enabled and the reorder control reappears. The way I'm currently implementing this is by calling reloadRowsAtIndexPaths:withRowAnimation:, but this is sloooowww. If I just change the showsReorderControl property, nothing happens. I had some success with using setEditing:animated:, but it didn't work consistently. Any ideas? Thanks!</p> http://stackoverflow.com/questions/1856134/blue-mail-dot-in-sdk 1 Blue mail dot in SDK? 4thSpace 2009-12-06T18:24:38Z 2009-12-06T18:29:58Z <p>Is the little blue mail dot the iPhone mail program uses to signify new mail, on each tableview cell, available in the SDK? Or, it is available for download some where on the Internet?</p> http://stackoverflow.com/questions/1775769/crash-when-moving-a-row-in-uitableview 0 Crash when moving a row in UITableView kubi 2009-11-21T15:26:48Z 2009-12-06T12:36:25Z <p>Here is the exception:</p> <pre><code>Serious application error. Exception was caught during Core Data change processing: *** -[NSCFArray removeObjectAtIndex:]: index (0) beyond bounds (0) with userInfo (null) </code></pre> <p>Here is the relevant code:</p> <pre><code>- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath { NSMutableArray *array = [[fetchedResultsController fetchedObjects] mutableCopy]; id objectToMove = [[array objectAtIndex:fromIndexPath.row] retain]; [array removeObjectAtIndex:fromIndexPath.row]; [array insertObject:objectToMove atIndex:toIndexPath.row]; [objectToMove release]; for (int i=0; i&lt;[array count]; i++) { [(NSManagedObject *)[array objectAtIndex:i] setValue:[NSNumber numberWithInt:i] forKey:JKChecklistRow]; } [array release]; } - (void)controllerWillChangeContent:(NSFetchedResultsController *)controller { [self.tableView beginUpdates]; } - (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath { UITableView *tableView = self.tableView; switch(type) { case NSFetchedResultsChangeMove: [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; // Reloading the section inserts a new row and ensures that titles are updated appropriately. [tableView reloadSections:[NSIndexSet indexSetWithIndex:newIndexPath.section] withRowAnimation:UITableViewRowAnimationFade]; break; } } - (void)controllerDidChangeContent:(NSFetchedResultsController *)controller { [self.tableView endUpdates]; } </code></pre> <p>I have a suspicion that the crash has something to do with the Core Data store getting out of sync with the unsaved context. If I save the context in the <code>-tableView:moveRowAtIndexPath:fromIndexPath:toIndexPath:</code> method, the program crashes faster, I haven't been able to figure out why, though.</p> http://stackoverflow.com/questions/1398212/iphone-sdk-delegate-failed-to-return-after-waiting-10-seconds-in-table-view-loadi 0 iphone sdk delegate failed to return after waiting 10 seconds in table view loading huge data from database Mizan 2009-09-09T08:04:29Z 2009-12-06T07:00:00Z <p>SendDelegateMessage: delegate failed to return after waiting 10 seconds. main run loop mode: kCFRunLoopDefaultMode If you were not using the touch screen for this entire interval (which can prolong this wait), please file a bug.</p> <pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { /* //NSString *label = [self.aNote length] == 0 ? kDefaultNoteLabel : self.aNote; NSString *label = [countriesToLiveInArray objectAtIndex:indexPath.row]; //CGFloat height = [label RAD_textHeightForSystemFontOfSize:kTextViewFontSize] + 20.0; //return height; float lineHeight = [ @"Fake line" sizeWithFont: [UIFont fontWithName:@"MarkerFelt-Thin" size:15] ].height; int numLines = [label sizeWithFont: [UIFont fontWithName:@"MarkerFelt-Thin" size:15] constrainedToSize: CGSizeMake(250, lineHeight*1000.0f) lineBreakMode: UILineBreakModeTailTruncation ].height / lineHeight; CGSize labelsize = CGSizeMake(250, (lineHeight*(float)numLines)); return labelsize.height+10; */ return 100; } </code></pre> <p>this delegate is the prob.if i comment out this whole function then program works. ad table view use default height but is we return any kind of return value then it shows the message...please help us.</p> http://stackoverflow.com/questions/1853276/setting-uitableviewcell-crashes-simulator 0 Setting UITableViewCell crashes simulator cannyboy 2009-12-05T19:59:14Z 2009-12-05T21:18:12Z <p>In my UIView nib file, I've got a UITableView which takes up about half the screen. The correpsponding .h and .m files are:</p> <pre><code>// helloViewController.h #import &lt;UIKit/UIKit.h&gt; @interface helloViewController : UIViewController &lt;UITableViewDelegate, UITableViewDataSource&gt; { NSArray *locationArray; } @property (nonatomic, retain) NSArray *locationArray; @end // helloViewController.m @synthesize locationArray; - (void)viewDidLoad { locationArray = [NSArray arrayWithObjects:@"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @"10", @"11", nil]; [super viewDidLoad]; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if(cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } [[cell textLabel] setText: [locationArray objectAtIndex:[indexPath row]]]; return cell; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 8; } </code></pre> <p>When I run this it crashes when I try to scroll the table (with no error in the debugger). However, if I replace [[cell textLabel] setText: [locationArray objectAtIndex:[indexPath row]]]; with </p> <pre><code>[[cell textLabel] setText:@"Boom"]; </code></pre> <p>... it does not crash....</p> <p>What is causing this problem? The delegate and datasource are connected to the File's Owner in IB, and the File's Owner's class is set to the correct class. Is it an issue that I'm using a table view within a uiview in the nib?</p> http://stackoverflow.com/questions/1852562/cant-get-keyboard-to-resign-consistently-with-uitextview-in-uitableviewcell 0 Can't get keyboard to resign consistently with UITextView in UITableViewCell unknown (google) 2009-12-05T16:04:24Z 2009-12-05T18:48:23Z <p>I have a UITextView within a UITableView cell. I have been unable to get the keyboard to consistently resign after editing. Detecting DidEndEditing hasn't worked. Adding my own "done" button to the toolbar brings intermittent results. Advice? (Note: This is UITextView not UITextField. Thanks)</p> http://stackoverflow.com/questions/1852525/problem-with-transparent-text-background-in-tableview 0 problem with transparent text-background in tableview michbeck 2009-12-05T15:48:31Z 2009-12-05T18:39:07Z <p>hey all,</p> <p>i've got an annoying problem in my tabelview..i was able to achive color-changing cells (blue/white/blue/...), but now i'm in trouble with my text which has a white background on the blue cells.</p> <p>i've tried for testing to set a background color to red </p> <pre><code> // try to set the backgroundcolor of the text ??? cell.textLabel.text.backgroundColor = [UIColor redColor]; </code></pre> <p>which doesn't work..hmpf</p> <p>please have a look at my code below, can anybody tell me what's wrong and how can i solve my problem giving the texts a transparent background?</p> <p><hr></p> <p>// Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {</p> <pre><code>static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; } // Set up the cell cell.textLabel.text=[RssFeedNodes objectAtIndex:indexPath.row]; // try to set the backgroundcolor of the text ??? cell.textLabel.text.backgroundColor = [UIColor redColor]; // show image in cell NSString *imageName=@"rss.png"; cell.imageView.image=[UIImage imageNamed:imageName]; // changing colors in cells NSInteger row = [indexPath row]; if (row % 2) cell.contentView.backgroundColor = [UIColor whiteColor]; else cell.contentView.backgroundColor = [UIColor colorWithRed:0.90f green:0.95f blue:1.0f alpha:1.0f]; return cell; </code></pre> <h2>}</h2> http://stackoverflow.com/questions/1851955/reloading-data-in-a-uitableview-when-pressing-a-uitabbaritem 1 Reloading Data in a UITableView when pressing a UITabBarItem Magic Bullet Dave 2009-12-05T11:31:54Z 2009-12-05T14:23:57Z <p>I have a UITabBarController as part of my app delegate and I want to trap when the user touches a specific tab (the favourites) and force the table within it to reload the data.</p> <p>What would be best practice in this instance?</p> <p>I have added the UITabBarDelegate protocol to my app delegate and implemented the didSelectViewController method. So far so good. Within the method I get a viewController, so I can check its title, etc. to determine which tab is selected.</p> <p>How can I then send a reloadData message to the UITableView in the viewController? I tried creating a method in my FavouritesViewController class and calling that but it does not work. </p> <p>Example code:</p> <pre><code>#pragma mark UITabBarController delegate methods - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController { // If the favourites tab is pressed then reload the data if (viewController.title = @"Favourites") { if ([viewController respondsToSelector:@selector(reloadFavourites:)]) { [viewController reloadFavourites]; } } } </code></pre> http://stackoverflow.com/questions/1491033/how-to-display-a-table-with-zero-rows-in-uitableview 0 how to display a table with zero rows in UITableView Sathiya 2009-09-29T07:13:32Z 2009-12-05T11:00:04Z <p>I am loading a content into UITableView dynamically. If there is data the table needs to display the data. If there is no data the table should display a plain page. But in my application the table displays the plain page with two separator lines. i need to remove this separator line and display a plain white page. Please Suggest?</p> <p>Any help would be appreciated!</p> http://stackoverflow.com/questions/1181091/transparent-custom-uitableviewcell 0 Transparent custom UITableViewCell xrazy 2009-07-25T03:16:12Z 2009-12-05T03:00:04Z <p>I've finally finished my first large application, the only problem is that I've focued a lot on design, and I'm using custom nibs as cells with transparent backgrounds. When I tried testing the application on my iPhone, the performance was terrible.</p> <p>Is there any way to get better scrolling performance while using transparent cells with a ImageView behind the UITableView?</p> <p>I've read two articles mostly:<br /> blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/ cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html</p> <p>Looks good, but what if I want to use transparent cells?<br /> a) Uses solid color.<br /> b) Uses imageview as background.</p> <p>Any help will be greatly appreciated. I want to get this baby released as soon as possible, but the performance as it is now is terrible!</p> http://stackoverflow.com/questions/1848539/uiview-showing-up-in-a-uitableview-section-it-was-never-added-to-when-scrolling 1 UIView showing up in a UITableView section it was never added to when scrolling Cole 2009-12-04T17:43:14Z 2009-12-04T18:22:59Z <p>I've got a UIView that I'm adding to a cell's content view in a particular section (Section 1 specifically), as shown below:</p> <pre><code>[cell.contentView addSubview:self.overallCommentViewContainer]; </code></pre> <p>When I quickly scroll up/down - the UIView appears in Section 0 - even though I never added the UIView to any of the cell's in Section 0.</p> <p>Here's a detailed look at my <code>cellForRowAtIndexPath</code> method:</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *kCustomCellID = @"CustomCellID"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCustomCellID]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:kCustomCellID] autorelease]; } // Configure the cell. switch(indexPath.section) { case 0: // other code break; case 1: // add the overall comment view container to the cell NLog(@"adding the overallCommentViewContainer"); [cell.contentView addSubview:self.overallCommentViewContainer]; NLog(@"creating the row at: Section %d, Row %d", indexPath.section, indexPath.row); break; } return cell; } </code></pre> http://stackoverflow.com/questions/1840160/uitableview-using-nsmutablearray-to-display-dynamic-content 0 UITableView using NSMutableArray to display dynamic content Wolfgang Schreurs 2009-12-03T14:23:43Z 2009-12-04T09:48:46Z <p>Been looking for a solution for a long while now, but still no success, perhaps someone here can help me.</p> <p>I created an application that runs a thread that communicates with a webserver in the background. Occasionally the thread receives information that I'd like to display in a UITableView. Because of the dynamic nature of the content I decided a NSMutableArray should be sufficient to store the information from the webserver.</p> <p>Whenever I receive information from the webservice my AppDelegate sends a notification. My UITableView registers to receive certain kinds of information which I intend to show in the UITableView.</p> <p>The initWithStyle method of the UITableViewController contains the following code:</p> <pre><code>- (void)addContact:(NSNotification *)note { NSLog(@"%@", [note object]); NSString *message = (NSString *)[note object]; NSString *name = [[message componentsSeparatedByString:@":"] objectAtIndex:2]; contact = name; [array addObject:contact]; </code></pre> <p>} </p> <ul> <li><p>(void)viewDidLoad { [super viewDidLoad];</p> <p>array = [[NSMutableArray alloc] initWithObjects:@"test1", @"test2", nil];</p> <p>tv.dataSource = self; tv.delegate = self;</p> <p>self.tableView = tv; }</p></li> </ul> <p>The array in AddContact contains the data displayed in the TableView. All data I manually add to the array in ViewDidLoad: will be shown in the table, but it doesn't happen for the data added in the AddContact: method. </p> <p>Anyone got an idea what I'm doing wrong? </p> http://stackoverflow.com/questions/1845773/how-to-initially-select-a-row-in-uitableview 0 How to initially select a row in UITableView an0 2009-12-04T09:07:50Z 2009-12-04T09:12:49Z <p>I can not find a good spot to call selectRowAtIndexPath:animated:scrollPosition: to INITIALLY select a row in UITableView. Table data have not been loaded when the table view controller is initialized, so I can't do selection immediate after the initialization of my UITableViewController(Over bound exception would occur otherwise).</p> http://stackoverflow.com/questions/1845249/is-this-a-tableview-issue-or-a-coredata-issue 0 Is this a tableView issue or a CoreData Issue monotreme 2009-12-04T06:38:16Z 2009-12-04T06:44:17Z <p>I have a CoreData-driven navigation app and I'm trying to figure out why It's crashing.</p> <p>I've got a hierarchy which is 3 view Controllers deep, all related by coredata relatioships, like this.</p> <p>TableViewA =relationship= TableViewB =relationship= TableViewC</p> <p>I'm honestly a novice at core data and I think my problem lies in the fetched results controller. I have one in TableViewA and another in TableViewB, and no matter how deep I go, the console always cites TableViewB's fetched results controller methods after a crash. Is this the problem?</p> <p>What's happening specifically is if I launch my app and drill down into the hierarchy of one record, let's call it Record1, I can delete sub records to my hearts content. Gone! no problem!</p> <p>But the second I go back to TableViewA and drill down into a different record, let's call that one Record2, and try to delete it's subrecords my app crashes, with the console citing this code from TableViewB as the problem.</p> <p><code>- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller { // The fetch controller is about to start sending change notifications, so prepare the table view for updates. [self.tableView beginUpdates]; }</code></p> <p>When I go into the debugger, the specific method it always has a problem with is:</p> <pre><code>if (![x.managedObjectContext save:&amp;error]) { NSLog(@"Unresolved error %@, %@", error, [error userInfo]); abort(); } </code></pre> <p>Just a confirmation of my idiocy with CoreData is all I'm looking for I think. Oh and how many ManagedObjectContexts should I have in an app of this type. I've been told I should have separate ones for adding content, which then should re-integrate into the main one. Is this true? Thanks!</p> http://stackoverflow.com/questions/1841864/iphone-uitableview-scrolling-changing-image-inside-uitableviewcell 1 Iphone Uitableview scrolling changing image inside UitableViewCell OscarMk 2009-12-03T18:23:04Z 2009-12-04T04:53:12Z <p>Hello,</p> <p>I am displaying some data using a UITableViewController, my table has 2 static sections with 6 static rows each. And I am subclassing UITableViewCell in order to add 3 Labels and a View, in the view i draw an arrow in only one of the cells in one of the sections.</p> <p>This all goes perfectly fine. Till i scroll down... then the arrow is randomly placed in other cells, once i scroll back up the arrow has again changed cells... This also happens if i try to set a backgroudColor for only one of the cells. Once i scroll down and up the cell that originally had the color no longer has it, and another seemingly random cell has the color now.</p> <p>Here is some of my code:</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; TableViewCells *cell = (TableViewCells *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[TableViewCells alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } [self configureCell:cell atIndexPath:indexPath]; return cell; </code></pre> <p>}</p> <pre><code>- (void)configureCell:(TableViewCells *)cell atIndexPath:(NSIndexPath *)indexPath { switch (indexPath.row) { case 0: { if (indexPath.section == cotizacionIdeal) { cell.arrowImage = [UIImage imageNamed:@"arrowUp.png"]; [cell.nombre setText:@"Recursos"]; [cell.cantidad setText:[NSString stringWithFormat:@"%1.2f", [cotizacionPrevia.sueldoDeRecursos doubleValue]]]; [cell.porcentaje setText:[NSString stringWithFormat:@"%1.2f%@", [cotizacion.recursosPorcentaje doubleValue], @"%"]]; } else { [cell.nombre setText:@"Recursos"]; [cell.cantidad setText:[NSString stringWithFormat:@"%1.2f", [cotizacionPrevia.sueldoDeRecursos doubleValue]]]; [cell.porcentaje setText:[Calculate calcPorcentaje:cotizacionPrevia.sueldoDeRecursos totalReal:self.totalReal]]; } } break; case 1: { if (indexPath.section == cotizacionIdeal) { [cell.nombre setText:@"Comision de Venta"]; [cell.cantidad setText:[Calculate calcMonto:cotizacion.comisionPorcentaje total:self.totalIdeal]]; [cell.porcentaje setText:[NSString stringWithFormat:@"%1.2f%@", [cotizacion.comisionPorcentaje doubleValue], @"%"]]; } else { [cell.nombre setText:@"Comision de Venta"]; [cell.cantidad setText:self.montoRealComision]; [cell.porcentaje setText:[NSString stringWithFormat:@"%1.2f%@", [cotizacion.comisionPorcentaje doubleValue], @"%"]]; } } </code></pre> <p>UITableViewCell class:</p> <pre><code>- (id)initWithFrame:(CGRect)frame cell:(TableViewCells *)cell </code></pre> <p>{ if (self = [super initWithFrame:frame]) { _cell = cell;</p> <pre><code> //self.opaque = YES; //self.backgroundColor = _cell.backgroundColor; } return self; </code></pre> <p>}</p> <ul> <li>(void)drawRect:(CGRect)rect { [_cell.arrowImage drawAtPoint:CGPointMake(0, 0)]; }</li> </ul> <p>@end</p> <p>@implementation TableViewCells</p> <p>@synthesize nombre; @synthesize porcentaje; @synthesize cantidad; @synthesize arrowImage;</p> <ul> <li><p>(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { // Initialization code</p> <pre><code>UILabel *nombreLabel = [[UILabel alloc] initWithFrame:CGRectZero]; self.nombre = nombreLabel; [nombreLabel release]; [self.nombre setFont:[UIFont boldSystemFontOfSize:14]]; [self.contentView addSubview:self.nombre]; UILabel *porcentajeLabel = [[UILabel alloc] initWithFrame:CGRectZero]; self.porcentaje = porcentajeLabel; [porcentajeLabel release]; [self.porcentaje setFont:[UIFont italicSystemFontOfSize:10]]; [self.contentView addSubview:self.porcentaje]; UILabel *cantidadLabel = [[UILabel alloc] initWithFrame:CGRectZero]; self.cantidad = cantidadLabel; [self.cantidad setTextAlignment:UITextAlignmentRight]; [cantidadLabel release]; [self.cantidad setFont:[UIFont boldSystemFontOfSize:14]]; [self.contentView addSubview:self.cantidad]; cellContentView = [[TableViewCellContentView alloc] initWithFrame:CGRectZero cell:self]; cellContentView.backgroundColor = [UIColor clearColor]; [self.contentView addSubview:cellContentView]; </code></pre> <p>}</p></li> </ul> <p>UPDATE:</p> <p>I have also tried setting the image to a different one for everyone but one and I am still having the same issue.</p> <pre><code>- (void)configureCell:(TableViewCells *)cell atIndexPath:(NSIndexPath *)indexPath { cell.arrowImage = [UIImage imageNamed:@"arrowDown.png"]; switch (indexPath.row) { case 0: { if (indexPath.section == cotizacionIdeal) { cell.arrowImage = [UIImage imageNamed:@"arrowUp.png"]; [cell.nombre setText:@"Recursos"]; [cell.cantidad setText:[NSString stringWithFormat:@"%1.2f", [cotizacionPrevia.sueldoDeRecursos doubleValue]]]; [cell.porcentaje setText:[NSString stringWithFormat:@"%1.2f%@", [cotizacion.recursosPorcentaje doubleValue], @"%"]]; } else { </code></pre> http://stackoverflow.com/questions/1842799/uitableviewcontroller-loads-empty-view-first-but-then-loads-correctly-after-seco 0 UITableViewController loads empty view first, but then loads correctly after second load joec 2009-12-03T20:44:29Z 2009-12-04T01:14:15Z <p>I have a <code>UITableViewController</code> which in it's <code>tableView:didSelectRowAtIndexPath</code> method, sets up a view controller, and calls </p> <p><code>[self.navigationController pushViewController: viewController animated:YES]</code>. </p> <p>When i select a row in the root controller, the second viewController loads but is empty - table view loads but has no data. Here, <code>tableView:numberOfRowsInSection</code> is not called.</p> <p>When i return to the top level, and then select the same row again, the view loads correctly - method called.</p> <p>Why would the table view not call the delegate methods on the fist attempt, but call them on the second?</p> <p>Am i missing something obvious?</p> <p>Thanks</p> http://stackoverflow.com/questions/260523/how-do-i-set-uitableviewcellselectionstyle-property-to-some-custom-color 5 How do I set UITableViewCellSelectionStyle property to some custom color? Amit Vaghela 2008-11-04T01:15:50Z 2009-12-04T01:05:26Z <p>I am developing an iPhone application, in my table view I wanted custom color for Cell Selection Style, I read the <em>UITableViewCell Class Reference</em> but there are only three constants defined for Selection style (Blue, Gray, None). I saw one application that used a different color than those defined in the reference.</p> <p>How can we use a color other than those defined in the reference? </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1843315/how-do-you-change-the-textlabel-when-uitableviewcell-is-selected 0 How do you change the textLabel when UITableViewCell is selected? Ike 2009-12-03T22:09:50Z 2009-12-03T22:09:50Z <p>I want to change the textLabel and detailTextLabel of a cell when it has been selected. I've tried the following, but no change occurs:</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { MyAppDelegate *appDelegate = (MyPhoneAppDelegate*)[[UIApplication sharedApplication] delegate]; UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; cell.detailTextLabel.text = @"xxxxx"; cell.textLabel.text = @"zzzzz"; [tableView reloadData]; } </code></pre> http://stackoverflow.com/questions/1839607/getting-the-same-name-for-the-table-rows-after-the-11th-row-of-the-uitableview 0 getting the same name for the table rows after the 11th row of the uitableview ? [closed] uttam 2009-12-03T12:30:47Z 2009-12-03T16:40:28Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1838705/value-in-the-table-view-is-repeating-after-the-11th-row">value in the Table view is repeating after the 11th row.</a> </p> </blockquote> <p>I am using this code but after the 11th row name of the row is repeating for 12th onwards row. </p> <pre><code> - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifi = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifi]; if (cell==nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifi] autorelease]; //cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifi] autorelease]; cell.accessoryType =UITableViewCellAccessoryDetailDisclosureButton; cell.textColor = [UIColor whiteColor]; cell.font=[UIFont fontWithName:@"Arial-BoldItalicMT" size:20.0]; cell.text = [[views objectAtIndex:indexPath.row] objectForKey:@"title"]; } // Configure the cell. return cell; } </code></pre> http://stackoverflow.com/questions/1840614/why-does-uitablview-cell-remain-highlighted 0 Why does uitablview cell remain highlighted? 4thSpace 2009-12-03T15:26:07Z 2009-12-03T15:43:00Z <p>What would cause a tableview cell to remain highlighted after being touched? I click the cell and can see it stays highlighted as a detail view is pushed. Once the detail view is popped, the cell is still highlighted. </p> http://stackoverflow.com/questions/1839937/textfield-in-uitableview 0 TextField in UITableView mayank sahai 2009-12-03T13:41:42Z 2009-12-03T13:50:56Z <p>I m new to iphone world .. help me out of this.</p> <p>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSString *MYIdentifier =@"MyIdentifier";</p> <pre><code>UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MYIdentifier]; if(cell==nil) { cell=[[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MYIdentifier] autorelease]; } CGRect frame =CGRectMake(5 ,10 , 320, 44); UITextField *txtField = [[UITextField alloc]initWithFrame:frame]; [txtField setBorderStyle:UITextBorderStyleNone]; txtField.delegate=self; switch (indexPath.row) { case 0: txtField.placeholder=editFrndBDb.frndName; txtField.text=editFrndBDb.frndName; txtField.tag=1; break; case 1: txtField.placeholder=editFrndBDb.bDay; txtField.text=editFrndBDb.bDay; txtField.tag=2; break; case 2: txtField.placeholder=editFrndBDb.frndNote; txtField.text=editFrndBDb.frndNote; txtField.tag=3; break; default: break; } [cell.contentView addSubview:txtField]; [txtField release]; cell.selectionStyle=UITableViewCellSelectionStyleNone; return cell; </code></pre> <p>}</p> <p>-(IBAction ) saveChanges:(id) sender {</p> <pre><code>UITextField *name =(UITextField *)[self.viewWithTag:1]; UITextField *bday= (UITextField *)[self.viewWithTag:2]; UITextField *note=(UITextField *)[self.viewWithTag:3]; NSInteger fid=editFrndBDb.friendId; if(name.text==NULL) name.text=@" "; if(bday.text!=NULL) bday.text=@" "; if(note.text!=NULL) note.text=@" "; [editFrndBDb editFriendInfo:name.text frndBdayIs:bday.text frndNoteIs:note.text frndIdIs:fid]; </code></pre> <p>} </p> <p>getting error in saveChange Method in Statement UITextField *name= (UITextField *)[self.viewWithTag:1]; error message : - "viewWithTag is some thing not a structure or a union:"</p> <p>help me out of this ...</p> http://stackoverflow.com/questions/1838453/rearranging-rows-in-uitableview 0 Rearranging rows in uitableview Nithin 2009-12-03T08:23:26Z 2009-12-03T10:13:19Z <p>I've an application in which each row contains an uiimageview and an uibutton. I have created them using custom cells, uitableviewcells. The button is to trigger the method, uiimagepickercontroller to pick an image from the library and show it in the imageview. I need that any user who uses the application can rearrange the rows as they wish so that they decide the order of the photos. <a href="http://stackoverflow.com/questions/1831561/image-on-uitableview-lost-after-scrolling">code here</a></p> http://stackoverflow.com/questions/1838736/store-nsdata-in-nsarray-nsdata-from-uiimagepickercontroller 0 Store NSData in NSArray, NSData from UIImagePickerController Nithin 2009-12-03T09:25:59Z 2009-12-03T09:25:59Z <p>In my application, i'm importing images to the each custom cells using imagePickerController. I need to store the data of the image in each row in an array, so that i can load the table easily from the array. What is the best way to do that. Note that the imag is picked one by one for each cell and is triggered by touching an uibutton.</p> http://stackoverflow.com/questions/1837168/how-do-i-get-a-row-count-from-a-uitableview 0 How do I get a Row count from a UITableView monotreme 2009-12-03T01:50:41Z 2009-12-03T02:31:42Z <p>I have a tableview I'd like to customize based on how many rows it has.</p> <p>If it has no rows, I'd like the background image to prompt the user to add content. If it has 1 or more rows, I'd like it to have a different background image, in order to display the content.</p> <p>I'm using a fetched results controller to populate my tableview, by the way.</p> <p>Any ideas?</p>