I have a plain table view that only has one row to start with. I'd like the user to be able to touch anywhere on the screen (e.g., on one of the "empty" rows), at which point my app will create a new cell for them to edit. (Like the Notes app, although I don't really know if Notes is using a table view...) But so far I can't seem to detect touches outside of the one active cell. tableView:didSelectRowAtIndexPath: only works on the cell that's already there. I tried implementing UIResponder's touchesBegan:withEvent:, but that isn't being called either...