I have been using UITableView and UIController in every screen of my application. It is simple game application where I have every screen full of particular image at particular stage and hot area to enable the object selection. The most annoying part is even entire View has fill up with image, I am able to drag it up and down which shows me blank screen. I want it to lock it so that nothing should happen when you try to drag it. Could anyone please help me out here.
Thanks.
Have you tried setting the
scrollEnabledproperty to NO?You can access it through the
tableViewproperty of yourUITableViewController.Preferred place where you can set it:
-viewDidLoad.