Quote:
Originally Posted by viezel
Yeah, that would be great!
Actually, what Im doing is having a tableview populated from a rss feed with galleries. when a row is pressed, I want the thumb view of a specific gallery to be visible.
Its here your code comes into play. Receiving an array of images from the tableView, and you are the expect in the rest
Thanks for talking your time to help me out!
|
well, thats also not difficult to change the format.
i mean, your table view will be easier to handle inside a navigation controller, so you push uiviewcontrollers into it, the stack should have this workflow
[rss table controller] > [thumbnail controller] > [full view controller]
all this is sat in one main controller, say "appController" it actually makes things easier, because appController is responsible for pushing and popping all of the controllers onto the stack, so you will find it easier to pass on the parameters to the nested controllers inside the navigation controller, usually from inside a controller, pass back messages using nsnotification if need be.
i will try to take a look at the demo i currently have, and see how easy it is to show everyone how to do it.