码迷,mamicode.com
首页 > 其他好文 > 详细

14.小项目:图片浏览器 版本4.0

时间:2015-08-02 11:44:49      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

--------------- ViewController.m ---------------

#import <Foundation/Foundation.h>

#import "ViewController.h"


@interface ViewController ()

@property (weak, nonatomic) IBOutlet UILabel *indexLabel;

@property (weak, nonatomic) IBOutlet UIImageView *imageView;

@property (weak, nonatomic) IBOutlet UILabel *infoLabel;

@property (nonatomic, assign) int index;

@property (weak, nonatomic) IBOutlet UIButton *rightBtn;

@property (weak, nonatomic) IBOutlet UIButton *leftBtn;

@property (nonatomic, strong) NSArray *datas;

- (IBAction)nextImage;

- (IBAction)preImage;

-(void)changeImage;

@end


@implementation ViewController

-(void)viewDidLoad

{

    [super viewDidLoad];

    [self nextImage];

}

-(NSArray *)datas

{

    if (_datas == nil)

    {

        NSString *path  = [[NSBundle mainBundle] pathForResource:@"imageData" ofType:@"plist"];

        _datas  = [NSArray arrayWithContentsOfFile:path];

    }

    return _datas;

}

-(void)changeImage

{

    self.indexLabel.text = [NSString stringWithFormat:@"%d/%zd",self.index, self.datas.count];

    NSDictionary *data = self.datas[self.index-1];

    self.imageView.image = [UIImage imageNamed:data[@"icon"]];

    self.infoLabel.text = data[@"desc"];

    self.leftBtn.enabled = self.index != 1;

    self.rightBtn.enabled = self.index != self.datas.count;

}

- (IBAction)nextImage

{

    self.index++;

    [self changeImage];

}

- (IBAction)preImage

{

    self.index--;

    [self changeImage];

}

@end 

14.小项目:图片浏览器 版本4.0

标签:

原文地址:http://www.cnblogs.com/lixiang2015/p/4695265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!