uitableview

Jittery scroll performance in UITableView after iOS 4 upgrade

I have some large images in a grouped UITableView. There's 1 row in each section which holds the image and there is associated header and footer text for each section about the image. I worked hard to get it to scroll smoothly is iPhone OS 3.x and finally succeeded. But... when I upgraded to iOS 4, that all changed. Now there is very jer...

UITable with UILabel or else ?

Following image is using UILable or else ? When I use UILabel , textcolor is black and text color is not change when I selected. So, I think, it's not UILabel. How to write like that ? Another question is how to write option table like following. ...

How to get a tableview to be the one like in youtube app for iPad?

I want to create an app that looks like the youtube app. I wanna have the tableview on the right or the object at index:1. I tried doing it but the problem is that My tableview is going off the bounds. I cant see the text in them? ...

How to make UITableView work within TTScrollView?

Hi there, I'm solving a problem how to make tableviews work within three20's TTScrollView. I have a project which I want to rebuild using three20 library. There is one module which allows user to flip through set of "pages", which contains table showing some list of data. My problem is that when I rebuilt this module to use three20's T...

Cover UITableViewController view with contents of another nib

I have a UITableViewController that I need to cover with another nib in some situations Whats a good way to do this? ...

tableview coredata temporary object

Hi, I am using a tableview with data from coredata using nsfetchedresultscontroller. When the view loads i make a new entity using SomeManagedObject *someManagedObject = [NSEntityDescription insertNewObjectForEntityForName:@"SomeManagedObject" inManagedObjectContext:self.managedObjectContext]; This way the new entity appears in my ta...

Handeling single uitextfield within UITableView

Hi All, Here is the scenario I am working on, I have a single textField in the cell allocation section and after this section I try to provide give the text field various arguments. Works fine no problem till here, the problem lies how to handle which textField is returning in the delegate method. My Earlier approach was to simply ...

Bubble Chat + Emoticon + UITableViewCell

Hi There, This is a question for iPhone development and I'm hopin someone can point me to the right direction on how i should go about implementing this. I am trying to write a chat application that supports emoticons/smileys. Where the smiley/emoticon images are stored can be figured out later. I think few iphone applications out the...

Initally visible cells gets invisible after calling reloadSections:withRowAnimation: method

I want to display a table which has multiple sections and initally only 3 elements of sections are shown. When user taps the section footer, section footer gets lost (becomes nil) and all elements of that section will be shown to user. For this reason, when the user taps the section footer, I call below code: -(void)loadMoreRowsInSect...

Core Data background sync conflict issue

I'm running into a crash issue while developing an iPhone app with Core Data. The app syncs data with a webservice on a background thread. When the app first launches, the existing data in the Core Data DB will be displayed to the user in a UITableView, while a background thread is kicked off the grab the latest data from the web ser...

Is is possible to add a layer to a UITableView on the iPhone?

I've been trying to add a simple layer to my UITableView and it seems that the layer is drawn over the tableview components. So, is possible to put a layer under the table components or the only way would be to put the tableview into a some kind of view? ...

NSdictionary object in plist needs to be a array of arrays, how to convert?

I have a dictionary .plist that has a subarray in it, however during the conversion in Json in converts to an array. The item is "profile" in the image below, as you can see, it's a Dictionary, how do I turn programmatically convert into an array": I would also like the items in the dictionary to have Item 0, Item 1, etc. so it looks ...

DidselectRowAtIndexPath does not respond when UITableViewCell is not fully shown.

Hi guys, I have a simple UITableView and I used a UITableViewCell to customize my cells. Everything runs perfect but there is one minor problem, When i try to touch a cell that is not fully visible -which hangs in the middle of tableview frame bounds-, it does not respond properly. (to check, I NSLogged it in the didSelectRowAtIndexP...

Copying part of QTableView

So I have a question very closely related to another question I've seen on here but when I tried posing my question there I got no responses, I'm hoping by asking this as a fresh question someone can help me out. Basically I want simply copy a portion of my table that I've created so that I can paste it to an excel file. Here's what I ha...

UITableView: Recovering from NSInternalInconsistencyException after bad updates?

So I'm updating a tableview by inserting/deleting/reloading rows as needed, but, as I'm not 100% confident that the tableview will always update correctly, is there any way to fail safely from a bad batch of updates? Right now, I have this: // Try to animate the updates. If something goes wrong, just reloadData. @try { ...

OK to use controller as delegate and data datasource for uitableview in iOS

Is it ok to use your view controller as your uiview's delegate, it seems to make sense to be as they are similar in nature. More specifically is it OK to use your uitableviewcontroller as your uitableview's delegate and data source? ...

Algorithm for inserting/deleting cells in UITableView based on Core Data object?

I have a core data recipe object that contains an ordered list of ingredient objects. The ingredients are displayed as a list in a UITableView. When the user cancels editing of the table view, I call rollback on the MOC, which may restore some ingredients (any that the user has deleted) and remove others (any that the user has added). ...

How to properly forward UITouch events in responder chain?

Hi there, I'm struggling with following problem. I'm having a view controller with scroll view. With this scroll view, user should be able to swipe through set of "pages" - like in apple's weather app, so nothing uncommon. Then each "page" within the scroll view is table view, showing a list of items. And here I'm getting into the probl...

Issues transferring data from one view to the next

Hi, I'm building an iPhone app, and am just wondering what's the best way to "send" data from one view to another? For example, if I have a UITableView full of information (table.data), and when pressed I show a "detail view" and want to give the user the option to open up a URL shown in the "detail view" in an in-app web browser, how d...

iPhone UI design elements

The item is consisting of short text 1-2 words and description 1~20 words. UITableView is listing all of the items and user have choice to select. Selecting will get him to item details view. From this point I don't understand: which controls/container I should use to represent short text and description text (normal view) how to orga...