您好我需要在UIPageViewController中显示图像,但我遇到了问题
我有一个包含所有图像的NSMutableArray,但我需要有关如何可视化的帮助
我有这段代码
@interface DataViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIImageView *imageView;
@property (strong, nonatomic) UIImage *dataObject;
array = [[NSArray alloc] initWithObjects:
[UIImage imageNamed:@"1.png"],
[UIImage imageNamed:@"2.png"],
[UIImage imageNamed:@"3.png"],
nil];
任何想法都将受到高度赞赏
答案 0 :(得分:0)
您应该阅读一些关于UIPageController
的教程。有很多。以下教程几乎向您展示了您的需求:
http://www.ioslearner.com/tag/uipageviewcontroller-demo/
如果您有更具体的问题,请随时提出。