views:

1580

answers:

4

Hi to all,

I'm trying to disable scrolling in a UITableView when editing a UITextField embedded in a UITableViewCell. This is just to prevent the cell from being scrolled out of sight when edited (and also to avoid some related cell "Recycling" problems). While googling around I've seen that somebody suggested the obvious:

tableView.scrollEnabled = NO:

or even

tableView.userInteractionEnabled = NO;

This does not work though (at least for me... iPhone SDK 3.0, tried on simulator) I set these properties to NO, I even check by logging that the properties are set to NO, but the UITableView keeps on responding normally to touch events. And it also happily scrolls. I wouldn't be that worried if somebody on the net were not claiming that this actually works...

So I would really appreciate some feedback on this. Am I missing something? Or is the only alternative subclassing UITableView to make a functionality available in its superclass (UIScrollView) work again??!

Thanks a lot in advance, Francesco

A: 

This is a bit of a guess but you could try overriding the touchesMoved function.

Edit: sorry, I see you already thought of subclassing.

Sam
+2  A: 

Did you try using self.tableView.scrollEnabled = NO;?

I've often tried that code from the web didn't work, simply because of a lack of the prefix self. I just tried this out without a problem.

I don't know if this work when turning it on and off dynamically. It does at least work for permanent settings when initializing the object...

-Mikkel

lund.mikkel
A: 

I tried:

[(UIScrollView*)[self view] setScrollingEnabled:NO];

and it worked ([self view] is my view of the current view controller, i.e., a UITableView).

The thing is, I get a warning:

'UIScrollView' may not respond to '-setScrollingEnabled:'

In all honesty, the property is "scrollEnabled", but it works nonetheless with the aforementioned code!

So, the "right" way to do things, should be:

[(UIScrollView*)[self view] setScrollEnabled:NO];

Why it also works the other way, is confusing me...

DebugWithAnAccent
A: 

If you're using UITableViewController, you also have a tableView property, with no casting needed. This works for me:

self.tableView.scrollEnabled = NO;

Let me know if that works for you.

David M.