¡@

Home 

2014/10/15 ¤U¤È 10:09:00

iphone Programming Glossary: fileslistviewcontroller

UINavigationController popToRootViewController, and then immediately push a new view

http://stackoverflow.com/questions/954982/uinavigationcontroller-poptorootviewcontroller-and-then-immediately-push-a-new

peersViewController that list all the network peers on a tableView. Upon selecting a peer an instance of FilesListViewController which list files in the c directory is pushed into the navigationController stack. In this filesListViewController I have.. path self navigationController popToRootViewControllerAnimated YES NSArray files self getFilesFromPeerAtPath path FilesListViewController filesVC FilesListViewController alloc initWithFiles files self navigationController pushViewController filesVC animated.. popToRootViewControllerAnimated YES NSArray files self getFilesFromPeerAtPath path FilesListViewController filesVC FilesListViewController alloc initWithFiles files self navigationController pushViewController filesVC animated YES filesVC release However when..