//首先建立模型文件
QLLQuestion.hheQLLQuestion.m文件 #import <Foundation/Foundation.h> @interface QLLQuestion : NSObject
@property(nonatomic,copy)NSString *answer;
@property(nonatomic,copy)NSString *icon;
@property(nonatomic,copy)NSString *title;
@property(nonatomic,strong)NSArray *options;
-(instancetype)initWithDict:(NSDictionary *)dict;
+(instancetype)QuestionWithDict:(NSDictionary *)dict;
@end #import "QLLQuestion.h" @implementation QLLQuestion
- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.answer=dict[@"answer"];
        self.icon=dict[@"icon"];
        self.title=dict[@"title"];
        self.options=dict[@"options"];
    }
    return self;
} +(instancetype)QuestionWithDict:(NSDictionary *)dict{
    return [[self alloc] initWithDict:dict]; }
@end //
//  ViewController.m
//  01-超级猜图
//
// #import "ViewController.h"
#import "QLLQuestion.h"
@interface ViewController ()
- (IBAction)tip;
- (IBAction)help;
- (IBAction)bigImg;
- (IBAction)nextQuestion;
- (IBAction)iconClick;
/**
 *  待选项视图
 */
@property (weak, nonatomic) IBOutlet UIView *opintionView;
/**
 *  答案项视图
 */
@property (weak, nonatomic) IBOutlet UIView *answerView;
/**
 *  模型类
 */
@property(nonatomic,strong)NSArray *question;
/**
 *  初始化序号
 */
@property(nonatomic,assign)int index;
/**
 *  序号label
 */
@property (weak, nonatomic) IBOutlet UILabel *numLabel;
/**
 *  标题
 */
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
/**
 *  图片按钮
 */
@property (weak, nonatomic) IBOutlet UIButton *imageBtn;
/**
 *  下一题按钮
 */
@property (weak, nonatomic) IBOutlet UIButton *nextBtn;
/**
 *  阴影按钮
 */
@property (weak, nonatomic) IBOutlet UIButton *cover;
/**
 *  分数按钮
 */
@property (weak, nonatomic) IBOutlet UIButton *scoreBtn;
@end @implementation ViewController - (void)viewDidLoad {
    [super viewDidLoad];
    //初始化index
    self.index=-;
    [self nextQuestion];
}
/**
 *  延时加载
 */
-(NSArray *)question{
    if (_question==nil) {
        
        //引入plist文件
        NSArray *dicArray=[NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"questions" ofType:@"plist"]];
        NSMutableArray *questonsAray=[NSMutableArray array];
        //取出模型
        for (NSDictionary *dict in dicArray) {
            QLLQuestion *quenstions=[[QLLQuestion alloc]initWithDict:dict];
            [questonsAray addObject:quenstions];
        }
        //赋值
        _question=questonsAray;
    }
    return  _question;
}
-(UIStatusBarStyle)preferredStatusBarStyle{
    return UIStatusBarStyleLightContent; }
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
/**
 *  下一题
 */
- (IBAction)nextQuestion {
    //增加索引
    self.index++;     //取出模型
    QLLQuestion *quenstion=self.question[self.index];
//    NSLog(@"%d",self.index);
    //设置数据
    [self settingDateWithQuenstion:quenstion];
    //设置答案项
    [self addAnswerBtn:quenstion];
    //设置待选项
    [self addOpinionBtn:quenstion];
}
/**
 *  设置数据
 */
-(void)settingDateWithQuenstion:(QLLQuestion *)quenstion{
    self.numLabel.text=[NSString stringWithFormat:@"%d/%lu",self.index+,self.question.count];
    self.titleLabel.text=quenstion.title;
    [self.imageBtn setImage:[UIImage imageNamed:quenstion.icon] forState:UIControlStateNormal];
    //设置下一个按钮的状态
    self.nextBtn.enabled=(self.index!=self.question.count-);
}
/**
 *  设置答案项
 */
-(void)addAnswerBtn:(QLLQuestion *)quenstion{     //删除之前的所有按钮
//    for (UIView *subView in self.answerView.subviews) {
//        [subView removeFromSuperview];
//    }
    [self.answerView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
    //设置答案按钮
    NSInteger length=quenstion.answer.length;
    for (int i=; i<length; i++) {
        UIButton *answerBtn=[[UIButton alloc]init];
        [self.answerView addSubview:answerBtn];
        //设置背景
        [answerBtn setBackgroundImage:[UIImage imageNamed:@"btn_answer"] forState:UIControlStateNormal];
        [answerBtn setBackgroundImage:[UIImage imageNamed:@"btn_answer_highlighted"] forState:UIControlStateHighlighted];
        [answerBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        //设置frame
        CGFloat margin=;
        CGFloat answerW=;
        CGFloat answerH=;
        CGFloat viewW=self.view.frame.size.width;
        CGFloat leftMargin=(viewW-length*answerW-(length-)*margin)*0.5;
        CGFloat answerX=leftMargin+i*(answerW+margin);
        answerBtn.frame=CGRectMake(answerX, , answerW, answerH);
        //监听答案按钮的点击
        [answerBtn addTarget:self action:@selector(answerClick:) forControlEvents:UIControlEventTouchUpInside];
        [self.answerView addSubview:answerBtn];
    } }
/**
 *  监听答案按钮的点击
 */
-(void)answerClick:(UIButton *)answerBtn{
    //答案按钮的文字
//    NSString *answerTitle=[answerBtn titleForState:UIControlStateNormal];
    NSString *answerTitle=answerBtn.currentTitle;     //让答案按钮对应的待选项的文字显示出来
    for (UIButton *optionBtn in self.opintionView.subviews) {
        //待选项的文字
        NSString *optionTitle=[optionBtn titleForState:UIControlStateNormal];         if ([optionTitle isEqualToString:answerTitle] && optionBtn.hidden==YES) {
            optionBtn.hidden=NO;
            break;
        }
    }
//    NSLog(@"%d",self.index);     //让被点击的答案按钮文字消失
    [answerBtn setTitle:nil forState:UIControlStateNormal];
    //让所有的答案按钮变为黑色
    for (UIButton *answerBtn in self.answerView.subviews) {
        [answerBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    }
}
/**
 *  设置带选项
*/
-(void)addOpinionBtn:(QLLQuestion *)quenstion{
    //设置待选项
    //删除之前的按钮
    //让数组中所有的对象都调用removeFromSuperview
    [self.opintionView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
//    for (UIView *subview in self.opintionView.subviews) {
//        [subview removeFromSuperview];
//    }     NSInteger count=quenstion.options.count;
    for (int i=; i<count; i++) {
        //设置待选项的背景
        UIButton *optionBtn=[[UIButton alloc]init];
        [optionBtn setBackgroundImage:[UIImage imageNamed:@"btn_option"] forState:UIControlStateNormal];
        [optionBtn setBackgroundImage:[UIImage imageNamed:@"btn_option_highlighted"] forState:UIControlStateHighlighted];
        //设置文字
        [optionBtn setTitle:quenstion.options[i] forState:UIControlStateNormal];
        [optionBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        
        optionBtn.titleLabel.font=[UIFont systemFontOfSize:];
        
        NSInteger totalColumns=;
        //设置frame
        CGFloat margin=;
        NSInteger row=i/totalColumns;
        NSInteger col=i%totalColumns;
        CGFloat optionW=;
        CGFloat optionH=;
        CGFloat viewW=self.view.frame.size.width;
        CGFloat optionLeftMargin=(viewW-totalColumns*optionW-(totalColumns-)*margin)*0.5;
        
        CGFloat optionX=optionLeftMargin + col*(optionW+margin);
        CGFloat optionY=row*(optionH+margin);
        optionBtn.frame=CGRectMake(optionX,optionY , optionW, optionH);
        //监听待选按钮的点击
        [optionBtn addTarget:self action:@selector(optionClick:) forControlEvents:UIControlEventTouchUpInside];
        
        [self.opintionView addSubview:optionBtn];
        
    } }
/**
 *  监听待选按钮的点击
 */
-(void)optionClick:(UIButton *)optionBtn{
    //让待选按钮消失
    optionBtn.hidden=YES;
    
    //显示文字到正确答案上
    for (UIButton *answerBtn in self.answerView.subviews) {
        //判断按钮是否有文字
        NSString *ansTitle= [answerBtn titleForState:UIControlStateNormal];
        if(ansTitle.length==){ //没有文字
            //设置答案按钮的文字为被点击待选按钮的文字
            NSString *optionTitle= [optionBtn titleForState:UIControlStateNormal];             [answerBtn setTitle:optionTitle forState:UIControlStateNormal];
            
            break;
        }
    }
    //判断答案是否填满
    BOOL full=YES;
    NSMutableString *tempAnswerTitle=[NSMutableString string];
    for (UIButton *answerBtn in self.answerView.subviews) {
        //判断按钮是否有文字
        NSString *ansTitle= [answerBtn titleForState:UIControlStateNormal];
        if(ansTitle.length==){ //没有文字
            
            full=NO;
        }
        //拼接文字
        if (ansTitle) {
            [tempAnswerTitle appendString:ansTitle];
        }
    }
    
    //答案满 了
    if (full) {
        QLLQuestion *quenstion=self.question[self.index];
        if ([tempAnswerTitle isEqualToString:quenstion.answer]) {   //答对了,文字蓝色
            for (UIButton *answerBtn in self.answerView.subviews) {
                [answerBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
            }
            //加分
            [self scoreDelta:];
            
            //跳到下一题
            [self performSelector:@selector(nextQuestion) withObject:nil afterDelay:0.25];         }else{
            for (UIButton *answerBtn in self.answerView.subviews) {
                [answerBtn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
            }
        }
    }
}
/**
 *  点击图片变大和变小
 */
- (IBAction)iconClick {
    
    if (self.cover==nil) {//要放大
        [self bigImg];
    }else{
        [self smallImg];
    }
}
/**
 *  提示
 */
- (IBAction)tip {
    //点击所有的答案按钮
    for (UIButton *answerBtn in self.answerView.subviews) {
        [self answerClick:answerBtn];
    }         //取出答案
        QLLQuestion *quenstions=self.question[self.index];
        
        //
        NSString *firstAnswer= [quenstions.answer substringToIndex:];
        
    for (UIButton *optionBtn in self.opintionView.subviews) {
        if ([optionBtn.currentTitle isEqualToString:firstAnswer]) {
            [self optionClick:optionBtn];
            break;
        }
    }
        //  扣分
    [self scoreDelta:-];
}
/**
 *  帮助
 */
- (IBAction)help {
}
-(void)scoreDelta:(int)delta{
    int score=self.scoreBtn.currentTitle.intValue;
    score+=delta;
    [self.scoreBtn setTitle:[NSString stringWithFormat:@"%d",score] forState:UIControlStateNormal];
}
/**
 *  大图
 */
- (IBAction)bigImg {
    
       //添加阴影
    UIButton *cover=[[UIButton alloc]init];
    cover.frame=self.view.bounds;
    cover.backgroundColor=[UIColor blackColor];
    cover.alpha=0.0;
    [cover addTarget:self action:@selector(smallImg) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:cover];
    self.cover=cover;
    
    //开始动画
  //更换阴影和头像的位置
//
//    [UIView beginAnimations:nil context:nil];
//    [UIView setAnimationDuration:1.0];
    [UIView animateWithDuration:0.5 animations:^{
        [self.view bringSubviewToFront:self.imageBtn];
        CGFloat iconW=self.view.frame.size.width;
        CGFloat iconH=iconW;
        CGFloat iconX=;
        CGFloat iconY=(self.view.frame.size.height-iconH)*0.5;
        self.imageBtn.frame=CGRectMake(iconX, iconY, iconW, iconH);
        cover.alpha=0.7;
    }];
  
         
    
//    [UIView commitAnimations];
}
/**
 *  小图
 */
-(void)smallImg{
    //动画的block
    
    [UIView animateWithDuration:0.5 animations:^{
        self.imageBtn.frame=CGRectMake(, , , );
        self.cover.alpha=0.0;
    } completion:^(BOOL finished) {
        [self.cover removeFromSuperview];
        self.cover=nil;
    }];
    
    
    
    //删除阴影
//    [self.cover removeFromSuperview];
//    self.cover=nil;;
    //缩小图片
//    [UIView beginAnimations:nil context:nil];
//    [UIView setAnimationDuration:1.0];
//    [UIView setAnimationDelegate:self];
//    [UIView setAnimationDidStopSelector:@selector(removeCover)];
//    self.imageBtn.frame=CGRectMake(97, 160, 220, 220);
//    
//    
//    self.cover.alpha=0.0;      //    [UIView commitAnimations];
    
    
}
//
//-(void)removeCover{
//    [self.cover removeFromSuperview];
//    self.cover=nil;
//}
@end

iOS实现(超级猜图)源码的更多相关文章

  1. iOS高仿app源码:纯代码打造高仿优质《内涵段子》

    iOS高仿app源码:纯代码打造高仿优质<内涵段子>收藏下来 字数1950 阅读4999 评论173 喜欢133 Github 地址 https://github.com/Charlesy ...

  2. 比较不错的一个ios找茬游戏源码

    找茬游戏源码 ,这个是一款非常不错的ios找茬游戏源码,该游戏的兼容性非常好的,并且还可以支持ipad和iphone,UI界面设计得也很漂亮,游戏源码真的是一款非常完美,而且又很完整的一款休闲类的游戏 ...

  3. ios水果风暴游戏源码下载

    游戏源码是从那个IOS教程网IOS.662p.com分享给大家的. 这是一款ios水果风暴游戏源码下载,介绍给大家一下,喜欢的朋友可以下载学习一下吧.应用介绍:这是一个以获得高分和挑战更高难度为目的的 ...

  4. ios水果风暴游戏源码项目下载

    这是一款ios水果风暴游戏源码下载,介绍给大家一下,喜欢的朋友可以下载学习一下吧.应用介绍:这是一个以获得高分和挑战更高难度为目的的游戏.游戏中有九种不同的卡通水果,您可以交换屏幕中两个相邻水果的位置 ...

  5. 仿陌陌的ios客户端+服务端源码项目

    软件功能:模仿陌陌客户端,功能很相似,注册.登陆.上传照片.浏览照片.浏览查找附近会员.关注.取消关注.聊天.语音和文字聊天,还有拼车和搭车的功能,支持微博分享和查找好友. 后台是php+mysql, ...

  6. iOS开发之Alamofire源码解析前奏--NSURLSession全家桶

    今天博客的主题不是Alamofire, 而是iOS网络编程中经常使用的NSURLSession.如果你想看权威的NSURLSession的东西,那么就得去苹果官方的开发中心去看了,虽然是英文的,但是结 ...

  7. iOS版打地鼠游戏源码

    打地鼠游戏源码,游戏是一款多关卡基于cocos2d的iPad打地鼠游戏源码,这也是一款高质量的打地鼠游戏源码,可以拥有逐步上升的关卡的设置,大家可以在关卡时设置一些商业化的模式来盈利的,非常完美的一款 ...

  8. 较好的IOS新闻客户端应用源码

    兼容性较好的新闻客户端应用源码,这个是一款国外新闻客户端源码,并且这款应用兼容性非常好的,可以很好地兼容iPhone和iPad的使用,而且应用的功能很多,新闻列表,上啦下拉刷新效果,评论列表,在线评论 ...

  9. ios球体弹跳游戏源码

    一款耐玩的ios游戏源码,画面上有很多小星星,球体落下的时候,你需要在画面上画出一条条的线条让球体弹跳起来然后吃掉小星星,如果没借助球体就失败了.游戏有很多关卡.注意: <ignore_js_o ...

随机推荐

  1. DbUtils使用例子

    DbUtils: JDBC Utility Component Examples This page provides examples that show how DbUtils may be us ...

  2. MMM和MHA的对比和应用(PPT分享)

    分享主题:MySQL高可用架构 --- MMM&MHA在大众点评应用和改进 内容简介:本次演讲,主要讲述以下几个方面 1. MMM在点评网是如何使用的 2. 细数MMM上踩过的坑以及如何填坑 ...

  3. Android学习笔记之如何使用圆形菜单实现旋转效果...

    PS:最近忙于项目的开发,一直都没有去写博客,是时候整理整理自己在其中学到的东西了... 学习内容: 1.使用圆形菜单并实现旋转效果..     Android的圆形菜单我也是最近才接触到,由于在界面 ...

  4. wcf服务返回json

    private static void CreateErrorReply(OperationContext operationContext, string key, HttpStatusCode s ...

  5. EFcodeFirst+T4=操纵任意数据库

    之前有写过两篇,EF选择Mysql数据源 跟 EF添加ADO.NET实体模型处直接选择Oracle数据源,其方便之处就不多说了,使用DBfirst直接点点点就能与数据库双向更新,而且关键是方便我们使用 ...

  6. SQL Server中中数据行批量插入脚本的存储实现

        看到博友SQL Server MVP桦仔的一篇博文“将表里的数据批量生成INSERT语句的存储过程的实现”.我仔细看来博文中的两个存储代码,自我感觉两个都不太满意,都是生成的单行模式的插入,数 ...

  7. C#设计模式——观察者模式(Observer Pattern)

    一.概述在软件设计工作中会存在对象之间的依赖关系,当某一对象发生变化时,所有依赖它的对象都需要得到通知.如果设计的不好,很容易造成对象之间的耦合度太高,难以应对变化.使用观察者模式可以降低对象之间的依 ...

  8. OracleHelper(对增删改查分页查询操作进行了面向对象的封装,对批量增删改操作的事务封装)

    公司的一个新项目使用ASP.NET MVC开发,经理让我写个OracleHelper,我从网上找了一个比较全的OracleHelper类,缺点是查询的时候返回DataSet,数据增删改要写很多代码(当 ...

  9. 交通银行 Java Socket 服务启动 管理 WINDOWS 版

    按照交通银行提供的无界面启动方法试验了很多次,都没有成功,所以自己动手用C# 知识写了一个. 小工具可以判断 交通银行 JAVA SOCKET 服务是否启动,并可以启动/关闭服务 主要代码如下: 判断 ...

  10. .Net Oauth2.0 第三方登录开发(Facebook ,LinkedIn )

    需求:OAuth2实现第三方网站授权并获取其相关数据来实现登录等功能 暂时支持Facebook ,LinkedIn ,基本大同小异,只是返回时的数据不同,需根据具体返回类型进行相应处理 1.OAuth ...