load animationImage from a table view Controller
Posted
by ackoverflow
on Stack Overflow
See other posts from Stack Overflow
or by ackoverflow
Published on 2010-01-21T02:47:08Z
Indexed on
2010/03/26
4:03 UTC
Read the original article
Hit count: 336
iphone
|uiviewcontroller
I use a UITableViewController to display a list of items, and one of the items selection must lead to a photo gallery created with animationImages. I usually declare the controllers associated to the first level selection with something like :
MyController *myController = [[MyController alloc] initWithStyle:UITableViewStylePlain];
myController.title = @"title 1";
myController.rowImage = [UIImage imageNamed:@"myControllerIcon.png"];
..
But I believe a UIViewController is needed to use animationImages.. How can I display a image animation directly from a table view ?
© Stack Overflow or respective owner