QJQuestions.h文件:
// QJQuestions.h // 04-猜图游戏 // // Created by 瞿杰 on 15/9/23. // #import <UIKit/UIKit.h> @interface QJQuestion : NSObject @property (nonatomic , copy)NSString * icon; @property (nonatomic , copy)NSString * title; @property (nonatomic , copy)NSString * answer; @property (nonatomic , strong)NSArray * options; + (instancetype)qustionWithDictionary:(NSDictionary * )dic; - (instancetype)initWithDictionary:(NSDictionary * )dic; @end// QJQuestions.h // 04-猜图游戏 //