This question has been asked here in a slightly different form, but the question has not been addressed in this thread, hence this thread.
In my iPad application, I allow the user to select a number of cells in a table view. After the user has tapped a button, a process begins and the user is not allowed to interact with the table view at that point (rest assured, the user can still interact with the application).
To accomplish this, I thought the "userInteractionEnabled" property of the UITableView was the answer, but in spite of setting this property to NO (and checking that it is indeed set to NO), the user can still interact with the table view.
I also tried the same approach in a fresh Xcode template project and that works fine. Am I missing something essential?