uitableview

iPhone SDK: Populate Table View From Core Data

I am looking for a tutorial that shows how to populate a UITableView from core data, allowing to add records and delete them. There are a few projects that I have found, but they are hard to follow without the steps to build them. Anyone seen tutorials on this? Or better yet, videos? ...

UITableViewCell prevent deletion

Hi, I am looking for a way of preventing the deleting of one of my cells. (no delete button should appear next to the cell when the table view is in editing mode) How can this be made possible? Thanks :) ...

UITableview to autowrap long text

How can I get a UITableView to automatically wrap text which is longer than the width of the cell? ...

UITableView load cells reverse

I want to make my cell load and use it's data in reverse. Basically, I want the last cell to be the first. ...

NSString to NSURL objects

Hello, I have an array that I populated with my plist file, which looks something like this: <array> <string>http://www.apple.com&lt;/string&gt; <string>http://www.google.com&lt;/string&gt; <string>http://www.amazon.com&lt;/string&gt; </array> So, I'm looking to convert these NSString objects to NSURL objects when I call them...

Black Corners On Grouped UITableViewCells Only After Navigation Pops

I am no graphics expert but I somehow managed to make some good looking custom grouped UITableViewCells by setting the background view to a backgroundView with some CG code. In all SDK's up to 3.1.3 (maybe 3.2... I haven't tested on the iPad) this was working great, but I think a more recent SDK has introduced a change in the way graphic...

IPhone UITableView Flexible CellHeight

Hello, i have a Problem getting the right height for my tablecell with a given string. Okay, here i am: I have a custom Tablecell with 3 Labels (3 Lines), the labels are autoresizing (Because of changing orientation) on viewWillAppear i load my data (i have to do it here, dont ask) and redraw the tableview but before i could know ho...

UIScrollview calling superviews layoutSubviews when scrolling?

Hello, I added a UITableView as a subview to a custom UIView class I'm working on. However I noticed that whenever I scroll the table it calls my classes layoutSubviews. I'm pretty sure its the UIScrollview that the table is inheriting from which is actually doing this but wanted to know if there is a way to disable this functionality ...

UITableView - centering of Sections

Hi all, I am using a table view with its style set as "Grouped". I have only 2 sections to be displayed in the table view and the table view does not occupy full iPhone screen (It has some other views with it). So I would like to display those 2 sections centered in the table view rather than displaying the sections from the top of tabl...

Reducing the space between sections of the UITableView.

Hi there, is there a way to reduce the space between two sections of a UITableView? There are about 15 pixel between every single section I have. I did already try to return 0 for -tableView:heightForFooterInSection: and -tableView:heightForHeaderInSection: but that doesn't change anything. Any suggestions? Thanks in advance. –f ...

UITableView Animation when entering Editmode

Hi! Maybe I´m just stupid but I cant understand why this isnt working. I want to achieve a little animation when I'm entering editing mode within a UITableView. [super setEditing:NO animated:YES]; [myTable setEditing:NO animated:YES]; [myTable reloadData]; [self.navigationItem.leftBarButtonItem setTitle:@"Edit"]; [self.navi...

UIScrollView with 3 UITableViews

I made a UIScrollView like the Weather.app. On the first page I've placed a UITableView which shows data loaded from a website. On the second and on the first page I also want to place a UITableView. The other two tables should also load data from a website, but from another URL. Now my question. How can I set up a UIScrollView with 3 ...

iPhone: Setup static content of UITableView

This guide from apple https://developer.apple.com/iphone/prerelease/library/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html (you need login) explains how to use "The Technique for Static Row Content" to use Interface Builder to setup the cells in a tableview. I have some cells with different ...

How do I push another viewController onto the navigationController from within a tabviewController?

Hi, I have a project set up using these two tutorials. http://twilloapp.blogspot.com/2009/03/how-to-embed-navigation-controller.html and the link for the second tutorial is at the bottom of the first. The tutorial is slightly outdated but I managed to get it to work as advertised. Now I want to push a new detailedView onto the Navi...

White disclosure indicator

In my app I have a UITableView with a UITableViewCellAccessoryDisclosureIndicator. I don't want to change the whole indicator, but I want to make it white instead of gray. How can I do it? Thanks in advance! ...

In-app settings controlled by plist?

Is there a library or good tutorial which covers creating in-app settings, like this: http://img.skitch.com/20090625-s8bf6ahybwe3cesd1id38h3nt.jpg What I would like is if it: doesn't use the built-in Settings app, and does not replicate it's settings in the Settings app is controlled by a plist file with various Dictionaries and Array...

iPhone: UITableView not Displaying New Data After Call to reloadData

My problem is that the cell.textLabel does not display the new data following a reload. I can see the cellForRowAtIndexPath being called so I know the reloadData call goes thru. If I log the rowString I see the correct value so the string I set label text to is correct. What am I doing wrong? I have following code : - (UITableViewCell...

Edit Mode Delete Spinner Icon for Specific TableView Rows

I have a grouped tableview. Each section has three rows. I need to be able to delete one section at a time. Using the standard edit mode, I can make it work. However, the delete icon shows up to the left of each cell, not just the first row in each section. Is there a way to suppress the little spinner icon for all rows except the f...

iPhone SDK: Know when tab on Tab Bar is clicked?

I have a tab bar which displays different views when clicked. When you click a tab for the first time, it calls the viewDidLoad method. But, it only calls that the first time. Is there a method that is called when a user clicks back to that tab, since the viewDidLoad won't be called that second time? (I need to do this to update a UIT...

Monotouch UIScrollView/UIPageView with UITableView as panel

Hi I'm building an app which is a guide to festivals. In the app I show lineups. You can see the Ui I have built for this on the video here: http://wmcstar.com/download.html The problem I have is that the scrollview/UIPageView - which does the left/right scrolling through the days, sometimes conflicts (i think) with the up/down scroll...