uitableview

Should I use UISegmentedControl or UITableView for navigation?

Fellow stackers, I am developing the interface for my iPhone application and I'm in doubt about an important paradigm that is present in almost every view I am making. I've read the Apple Human Interface Guidelines but I think that my question isn't answered there. The problem is, e.g. in the "My Account" view I have to display all the ...

Adding an UIImage to a UITableViewCell for "State Touched"

What's the best way of adding an image for the touch state in a UITableViewCell? I know how to set the cell.selectionStyle but I actually need to add an image (a different one for each row) just when the user is touching it (and it pushes the new view in) Like a "Button State Touched". What's the best way of achieving this? I tried wit...

Using UIWebView to create hyperlinks in UITableView Footer

Hey friends, I am trying to create a UIWebView in UITableView footer. The table is grouped. Actually I am trying to create a hyperlink using UIWebView. For example there should be some text like Hey folks Contact me Contact me should be a hyperlink and I want to place this text in UITableView footer. I am unable to figure out how to...

Problem with UIWebView

Hi, I am trying to launch an external safari when I click on a hyperlink in UIWebView but in my case nothing happens. If I try to include target as blank and skip the UIWebView delegate method it launches the safari within the same view..please guide me friends how to open an external browser when tapped on a link in UIWebView..here is ...

IPhone Development - popViewControllerAnimated doesn't update tableView

Hi guys, I'm trying to auto-update a tableView after call popViewControllerAnimated from a view. I've ready this post, but it's not exactly what I'm looking for: http://stackoverflow.com/questions/1892713/popviewcontrolleranimated-doesnt-update-info-iphone-sdk Any ideas? Thanks in advance, Claudio ...

How to handle user click the "delete button " in setEditing in TableView?

I added a editButton on the table like this: self.navigationItem.leftBarButtonItem = self.editButtonItem; and, having a setEditing method: - (void) setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing:editing animated:animated]; [self.watchListDetailTableView setEditing:editing animated:animated]; if (...

Query on Indexed table view

Hi, Can anyone please help me understand Indexed table view implementation with code examples or please give a pointer to code snippet for the same. ...

sticky selected cell in UITableView like the new twitter ipad app?

any idea how to have the selected cell in UITableView sticky and remain visible while scrolling? like how the twitter ipad app works. i would like it on my splitview's uitableview. ...

UITableView Delegate Not Found In Documentation

I couldn't find this method in the UITableView delegate documentation....can you tell me where I would look for the documentation for this method? - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath Thanks! ...

Multiple NsfetchedResultsController on a UItableView

Hi guys! sorry if this is a noob question but i'm having difficulty implementing 2 nsfetchedresultsController in a tableView. i wanted a fetchedresultsController in each section of the table (2 sections), something like this: Wishlist product product2 Bought product3 I know that for this example i wouldn't need 2 nsfetchedResult...

Disable UITableViewCellAccessory

I want to disable the UITableViewCellAccessoryDetailDisclosure button for certain rows in my table. I cannot seem to find any way to do this. I tried just doing: cell.UITableViewCellAccessoryDetailDisclosureButton.enabled = NO; But no luck. Does anyone know how to do this? Thank you! ...

Does UITableView's indexPathsForVisibleRows return the wrong paths?

Hi there, I use the following code to trigger image downloads in visible cells/paths: - (void)loadImagesForOnScreenrows { NSArray *visiblePaths = [tableView indexPathsForVisibleRows]; for (NSIndexPath *indexPath in visiblePaths) { UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; if([cell viewWithT...

iPhone's UITableViewCellAccessoryCheckMark

Hello everyone, I have an issue in creating a CheckMarkAccessoryView in the UITableView.When i select a row in th table,i can get a checked mark for that row,but randomly some other rows in the table also gets the check mark.I want only that cell to get the check mark.How can i do this?I am coding for an exclusive list.The following is ...

how to print disclosure button on the right side of the row in table view in iphone

i have a table view.i divided it into 1 section.in that section i have 1 row with heading and its related content in the webview below to that row in same section. now i want to print disclosure button on the right side of the row.when i try to do this it is printing on the content of the webview. i get section heading from method "title...

XCode: Setting up multiple UITableView columns

I haven't found a good answer to this, and I must be dense, but... I'm trying to get a table view set up with an image and a label in each row. The image would be an indicator image (New, In Progress, Stopped, Finished, ect.) and the label would be a particular issue name. I can set up the table view normally with one column, but I ca...

iPhone - How can i create a tableview with rows in interface builder?

I've seen a lot of applications where they have for example a login page. The username field and password are in a grouped (rounded) tableview. Is it possible to do this with interface builder alone? If yes what's the trick? Or does it have to be generated by code? How can i create the following form? ...

How to improve blending performance to make smooth scrolling?

Fast intro Edit: I have 9 cells. All 9 cells contain bundle image. 7 bundle images have some kind of transparency (in file, not as a blending option in code) to load images from web underneath them. The scrolling problem affects the table view when both bundle and web images are loaded into arrays as UIImage objects. If I disable draw...

unrecognized selector sent to instance

I added an index search to a core data backed UITableView. the search works fine, however after navigating back to the tableView I get this error: -[NSSQLRow controllerDidChangeContent:]: unrecognized selector sent to instance 0x815edf0 I can post more code if this is too little information to go on. thanks for any help ...

UISwitch changes cell when scrolling tableview

Hi, I have a weird problem (at least in my opinion). When I add a UISwitch to my table view, the switch changes cell automatically when the user scrolls the table view. Below is the code on how I create the UISwitch for the tableview. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath ...

How to recreate the iPhone app store application detail view?

I'm trying to get a view that is similar to the the application detail view presented in the app store but I can't figure out how it is implemented. It looks like a UITableView with 3 or 4 custom cells. Does that sound right? Any insight would be great. Thanks. ...