uitableview

Grouped UITableView displays fine, but only once

What would cause this? I have a grouped tableView that I've added in IB. 2 groups. 3 rows in each group. It displays fine when my app is first run. (So I know I'm doing SOMETHING right. Wouldn't that mean that I (at least) have my Delegate, DataSource, IBOutlets, and connections set up correctly?) But when I click on a button that...

UITableView to "float" on top of background

I have a standard, grouped UITableView that I am trying to add a custom background to (instead of the boring gray stripes). Ultimately, my designer would like the table view to "slide over" or "float over" the background. I have gotten as far as setting the background of the table view to "clear" with the hopes of showing a static image ...

Adding a row of icons to a table cell.

Okay I am just totally too close to this I think. I have a tableview. In that table view everything is working except section 2 row 0. AND -- before anyone asks...I know I am not using the *imgWordView (in the code below) and that is why the icons are not showing but i do not know where to add it to the subview so i can place it at c...

How can I get multi selected cell items for NSArray?

I've implemented multi selected UITableView. I want to get multi selected cell informations. For example, there are 5 cell items in myTableView. and I touched 3 cell items. and then I want to remove these items. (It likes multi delete of iPhone mail) How can i get this information? ...

UIView border with fade or blur effect

Hi everyone! I'm looking for method to add gradually fading or maybe blured border (I don't exactly know how to name this effect) to arbitrary UIView. I don't need animated effect, I need static effect, for example I my UITableView border being partially transparent. I've made the example: http://i46.tinypic.com/14nz76f.png, so you can...

When adding objects to a uitableview datasource array, how can I update the tableview while still onscreen?

I have a view controller that allows users to add an nsstring to an array that is the source for a uitableview directly underneath the add string uitextfield. I want to add the string to the uitablview as soon as its added to the backend array. ive tried a couple different things and im not really sure how to do it. my feeling is that i ...

warning message with detailed subviews?

Does my code look right? Im trying to load data into my table view and detailed sub view. My table works fine, but the data wont load in my sub view The warning appears under this line nextController.dataItem = [data objectAtIndex:indexPath]; Here is my RootViewController.m // Configure the data for the cell. NSDictionary *...

Core Data: UITableView with multiple NSFetchedResultControllers

What I want to do is pretty simple. In my UITableViewController, I want to load data from multiple NSFetchedResultControllers (I have multiple entities in my data model) and put data from each one into a different section in the table view. So for example, all the fetched items from the first NSFetchedResultController would go in section...

How to prevent UITableView from reserving space at the left of cell when editing is turned on ?

I'm set editing mode for UITableView to have a possibility of cell reordering. UITableViewCellEditingStyleNone is returned by editingStyleForRowAtIndexPath: method for every cell, but it reserve some area on the left of cell. Is it possible to prevent such an area reserving, because I'm not need an insert or delete icon on left? In short...

Tableviews and the subviews with .plist problem

I am trying to use data from my plist in my table view and subview. the table view works fine and everything loads. But I cant get the data into the subview. My app is based around apples advance table cell download My RootViewControllerPoints.m - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)secti...

programaticlaly moving rows with animation in UITableView

Hi, I want to move a row to the bottom of my UITableView with cool animation effect just like in Grocery Shopping List app. How can I create such animation? -Alex ...

Clickable links in UITableView that open up Safari.

Hi, I am working on an iPhone app, and would like to be able to click on a link that is in UITableView. When the Link, and only the link is selected I want the Safari app to be opened to the selected link. Any suggestions on how to do this? Thanks so much! ...

What template for project should I use?

Looking to provide a user with a list of different math calculations such a the area of a circle and Pythagoras theorem, What template should I use? The user will select a cell that will open to a calculation page, here they will be able to enter raw data to be calculated. If you know of a tutorial of sorts please direct. Thanks. ...

iPhone - textField in a tableViewCell - Scrolling off screen clears the value

I have a textField inside a tableViewCell. I recently noticed that if I enter a value in the textBox, and then scroll the cell off the screen, the value in the textbox disappears. I have a safeguard against this. If there is no UIKeyboard present, the tableView can't scroll far enough to have to redraw the cell. However, some users d...

UITableView Crashes if Data Source Is Updated During Scrolling

I have an app wherein the datasource for a UITableView updates by a background thread from a remote server every 30 seconds. A crash occurs if the user is scrolling the tableView or if the tableView is in process of reloadTableView:. The reason for crash is that number of rows in table at the time of the crash doesn't match the number o...

How do I make a UITableView that remembers it's row names

I have a UITableView that I am allocating multiple times during the lifetime of my app, I want the names of the rows to stay in scope. What is the most memory efficient way of doing this. ...

section uitable by current date?

hey everyone, i want the user to input a row into the table...and the row to automatically make a table section for the day it was added and keep it in order by day.. aka the user added a row to the table today...put it under feb 22...tomorrow they will add another cell put it under create another section feb 23, and add the row to it...

tableview editing

hi i am working with iphone sdk and i need to know when there is a new item or when the user remove an item from the tableview because it is a 'drinks' section and if the user add or remove a drink, i need to show it in another view. thx ...

How can I add an image into a tableview "header"?

I have a tableview where I am displaying a list of data. I would like to have a logo instead of just text for the header portion of the view. The code below gives me just the text. Any ideas on how to get the image in there? (void)viewDidLoad { [super viewDidLoad]; self. = @"Videos"; ...

Redraw UITableView after updating data

Hi I have a UITableview that I load with data async so the tableview might appear without data. I have tired the ReloadData method but the tableview remains empty until I scroll the tableview, suddenly the data appears. The same thing happens when I load a tableview as a detailedview and switching between items, the previoud items data a...