iphone Programming Glossary: firstfolderviewcontroller
Change view when tableview cell is pressed? http://stackoverflow.com/questions/6864681/change-view-when-tableview-cell-is-pressed is selected i want the cell to go to a page of its own i don't want every cell to go to the same page. I tried using FirstFolderViewController first FirstFolderViewController alloc init first.modalTransitionStyle UIModalTransitionStyleFlipHorizontal first presentModalViewController.. go to a page of its own i don't want every cell to go to the same page. I tried using FirstFolderViewController first FirstFolderViewController alloc init first.modalTransitionStyle UIModalTransitionStyleFlipHorizontal first presentModalViewController first animated.. you present presumably based on data that creates your table cell. One way to do this is to set a @property on your FirstFolderViewController just before you present it and then when it's viewWillAppear function is called you can act on that value. For example FirstFolderViewController..
|