123456789101112131415161718192021222324252627282930313233 |
- //
- // LaunchAdModel.m
- // XHLaunchAdExample
- //
- // Created by zhuxiaohui on 2016/6/28.
- // Copyright © 2016年 it7090.com. All rights reserved.
- // 代码地址:https://github.com/CoderZhuXH/XHLaunchAd
- // 广告数据模型
- #import "LaunchAdModel.h"
- @implementation LaunchAdModel
- - (instancetype)initWithDict:(NSDictionary *)dict
- {
- self = [super init];
- if (self) {
-
- self.content = dict[@"content"];
- self.openUrl = dict[@"openUrl"];
- self.duration = [dict[@"duration"] integerValue];
- self.contentSize = dict[@"contentSize"];
- }
- return self;
- }
- -(CGFloat)width
- {
- return [[[self.contentSize componentsSeparatedByString:@"*"] firstObject] floatValue];
- }
- -(CGFloat)height
- {
- return [[[self.contentSize componentsSeparatedByString:@"*"] lastObject] floatValue];
- }
- @end
|