views:

147

answers:

1

I have a UITableViewController List showing text containing hyperlinks and I have a label which displays hyperlinks in a special manner so that they are clickable.

I want that, when a user clicks on any UITableViewCell then the label would turn on the links in clickable form and when the user scrolls the UITableViewController List the Label should turn back to normal form.

Where from I would get the user has scrolled the list or not.

And whats the correct location and correct way to customize UITableViewCell.

Please any light in this way would be really helpful.

A: 

Listen for UITableViewDelegate tableView:willSelectRowAtIndexPath: and UIScrollViewDelegate scrollViewWillBeginDragging:

slf
Okay I got the scrolling working now but I had another issue, I want to change some contents of the cell when the user selects the cell how i'm supposed to do this can you give me some light on this.
y ramesh rao
that all depends on what is inside your cell, and what type of cell it is
slf
Its a simple UITableViewCell with some labels and UIImageView similar to the ones we can see in some live iPhone apps like tvider
y ramesh rao
in that case, change the properties using the setter methods
slf