这是Demo中的ATNativeSelfRenderView示例,是自定义内容,非SDK的一部分。
//ATNativeSelfRenderView.h
@interface ATNativeSelfRenderView : UIView
@property(nonatomic, strong) UILabel *advertiserLabel;
@property(nonatomic, strong) UILabel *textLabel;
@property(nonatomic, strong) UILabel *titleLabel;
@property(nonatomic, strong) UILabel *ctaLabel;
@property(nonatomic, strong) UILabel *ratingLabel;
@property(nonatomic, strong) UIImageView *iconImageView;
@property(nonatomic, strong) UIImageView *mainImageView;
@property(nonatomic, strong) UIImageView *logoImageView;
@property(nonatomic, strong) UIButton *dislikeButton;
@property(nonatomic, strong) UIView *mediaView;
// only for yandex native
@property(nonatomic, strong) UILabel *domainLabel;
@property(nonatomic, strong) UILabel *warningLabel;
- (instancetype) initWithOffer:(ATNativeAdOffer *)offer;
@end
//ATNativeSelfRenderView.m
#import "ATNativeSelfRenderView.h"
#import <Masonry/Masonry.h>
#import <SDWebImage/SDWebImage.h>
@interface ATNativeSelfRenderView()
@property(nonatomic, strong) ATNativeAdOffer *nativeAdOffer;
@end
@implementation ATNativeSelfRenderView
- (void)dealloc {
NSLog(@"🔥---ATNativeSelfRenderView--销毁");
}
- (instancetype)initWithOffer:(ATNativeAdOffer *)offer {
if (self = [super init]) {
_nativeAdOffer = offer;
[self addView];
[self makeConstraintsForSubviews];
[self setupUI];
}
return self;
}
- (void)addView {
self.advertiserLabel = [[UILabel alloc]init];
self.advertiserLabel.font = [UIFont boldSystemFontOfSize:15.0f];
self.advertiserLabel.textColor = [UIColor blackColor];
self.advertiserLabel.textAlignment = NSTextAlignmentLeft;
self.advertiserLabel.userInteractionEnabled = YES;
[self addSubview:self.advertiserLabel];
self.titleLabel = [[UILabel alloc]init];
self.titleLabel.font = [UIFont boldSystemFontOfSize:18.0f];
self.titleLabel.textColor = [UIColor blackColor];
self.titleLabel.textAlignment = NSTextAlignmentLeft;
self.titleLabel.userInteractionEnabled = YES;
[self addSubview:self.titleLabel];
self.textLabel = [[UILabel alloc]init];
self.textLabel.font = [UIFont systemFontOfSize:15.0f];
self.textLabel.textColor = [UIColor blackColor];
self.textLabel.userInteractionEnabled = YES;
[self addSubview:self.textLabel];
self.ctaLabel = [[UILabel alloc]init];
self.ctaLabel.font = [UIFont systemFontOfSize:15.0f];
self.ctaLabel.textColor = [UIColor blackColor];
self.ctaLabel.userInteractionEnabled = YES;
[self addSubview:self.ctaLabel];
self.ratingLabel = [[UILabel alloc]init];
self.ratingLabel.font = [UIFont systemFontOfSize:15.0f];
self.ratingLabel.textColor = [UIColor blackColor];
self.ratingLabel.userInteractionEnabled = YES;
[self addSubview:self.ratingLabel];
self.domainLabel = [[UILabel alloc]init];
self.domainLabel.font = [UIFont systemFontOfSize:15.0f];
self.domainLabel.textColor = [UIColor blackColor];
self.domainLabel.userInteractionEnabled = YES;
[self addSubview:self.domainLabel];
self.warningLabel = [[UILabel alloc]init];
self.warningLabel.font = [UIFont systemFontOfSize:15.0f];
self.warningLabel.textColor = [UIColor blackColor];
self.warningLabel.userInteractionEnabled = YES;
[self addSubview:self.warningLabel];
self.iconImageView = [[UIImageView alloc]init];
self.iconImageView.layer.cornerRadius = 4.0f;
self.iconImageView.layer.masksToBounds = YES;
self.iconImageView.contentMode = UIViewContentModeScaleAspectFit;
self.iconImageView.userInteractionEnabled = YES;
[self addSubview:self.iconImageView];
self.mainImageView = [[UIImageView alloc]init];
self.mainImageView.contentMode = UIViewContentModeScaleAspectFit;
self.mainImageView.userInteractionEnabled = YES;
[self addSubview:self.mainImageView];
self.logoImageView = [[UIImageView alloc]init];
self.logoImageView.contentMode = UIViewContentModeScaleAspectFit;
self.logoImageView.userInteractionEnabled = YES;
[self addSubview:self.logoImageView];
UIImage *closeImg = [UIImage imageNamed:@"icon_webview_close" inBundle:[NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@"AnyThinkSDK" ofType:@"bundle"]] compatibleWithTraitCollection:nil];
self.dislikeButton = [UIButton buttonWithType:UIButtonTypeCustom];
self.dislikeButton.backgroundColor = randomColor;
[self.dislikeButton setImage:closeImg forState:0];
[self addSubview:self.dislikeButton];
}
- (void)setupUI {
if (self.nativeAdOffer.nativeAd.icon) {
self.iconImageView.image = self.nativeAdOffer.nativeAd.icon;
} else {
[self.iconImageView sd_setImageWithURL:[NSURL URLWithString:self.nativeAdOffer.nativeAd.iconUrl]];
NSLog(@"🔥AnyThinkDemo::iconUrl:%@",self.nativeAdOffer.nativeAd.iconUrl);
}
if (self.nativeAdOffer.nativeAd.mainImage) {
self.mainImageView.image = self.nativeAdOffer.nativeAd.mainImage;
} else {
[self.mainImageView sd_setImageWithURL:[NSURL URLWithString:self.nativeAdOffer.nativeAd.imageUrl]];
NSLog(@"🔥AnyThinkDemo::imageUrl:%@",self.nativeAdOffer.nativeAd.imageUrl);
}
if (self.nativeAdOffer.nativeAd.logoUrl.length) {
NSLog(@"🔥----logoUrl:%@",self.nativeAdOffer.nativeAd.logoUrl);
[self.logoImageView sd_setImageWithURL:[NSURL URLWithString:self.nativeAdOffer.nativeAd.logoUrl]];
} else if (self.nativeAdOffer.nativeAd.logo) {
NSLog(@"🔥----logo:%@",self.nativeAdOffer.nativeAd.logo);
self.logoImageView.image = self.nativeAdOffer.nativeAd.logo;
} else { // All of these are nil, set the default platform logo using networkFirmID.
if (self.nativeAdOffer.networkFirmID == 15) {//CSJ
self.logoImageView.image = [UIImage imageNamed:@"tt_ad_logo_new"];
}
}
self.advertiserLabel.text = self.nativeAdOffer.nativeAd.advertiser;
self.titleLabel.text = self.nativeAdOffer.nativeAd.title;
self.textLabel.text = self.nativeAdOffer.nativeAd.mainText;
self.ctaLabel.text = self.nativeAdOffer.nativeAd.ctaText;
self.ratingLabel.text = [NSString stringWithFormat:@"%@", self.nativeAdOffer.nativeAd.rating ? self.nativeAdOffer.nativeAd.rating : @""];
// 仅yandex平台支持,有返回时必须渲染
self.domainLabel.text = self.nativeAdOffer.nativeAd.domain;
self.warningLabel.text = self.nativeAdOffer.nativeAd.warning;
NSLog(@"🔥AnythinkDemo::native文本内容title:%@ ; text:%@ ; cta:%@ ",self.nativeAdOffer.nativeAd.title,self.nativeAdOffer.nativeAd.mainText,self.nativeAdOffer.nativeAd.ctaText);
}
- (void)makeConstraintsForSubviews {
self.backgroundColor = randomColor;
self.titleLabel.backgroundColor = randomColor;
self.textLabel.backgroundColor = randomColor;
[self.logoImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.width.equalTo(@25);
make.bottom.equalTo(self).equalTo(@-5);
make.left.equalTo(self).equalTo(@5);
}];
[self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self).offset(100);
make.right.equalTo(self).offset(-40);
make.height.equalTo(@20);
make.top.equalTo(self).offset(20);
}];
[self.textLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self).offset(100);
make.right.equalTo(self).offset(-40);
make.height.equalTo(@20);
make.top.equalTo(self.titleLabel.mas_bottom).offset(10);
}];
[self.ctaLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.textLabel.mas_bottom).equalTo(@5);
make.width.equalTo(@100);
make.height.equalTo(@40);
make.left.equalTo(self.textLabel.mas_left);
}];
[self.ratingLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.ctaLabel.mas_right).offset(20);
make.height.equalTo(@40);
make.top.equalTo(self.ctaLabel.mas_top).offset(0);
make.width.equalTo(@20);
}];
[self.domainLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.ratingLabel.mas_right).offset(20);
make.right.equalTo(self).offset(-40);
make.top.equalTo(self.ctaLabel.mas_top).offset(0);
make.height.equalTo(@40);
}];
[self.advertiserLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.equalTo(@30);
make.right.equalTo(self).equalTo(@-5);
make.left.equalTo(self.ctaLabel.mas_right).offset(50);
make.bottom.equalTo(self.iconImageView.mas_bottom);
}];
[self.iconImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self).offset(20);
make.height.width.equalTo(@75);
make.top.equalTo(self).offset(20);
}];
[self.mainImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self).offset(20);
make.right.equalTo(self).offset(-20);
make.top.equalTo(self.iconImageView.mas_bottom).offset(25);
make.bottom.equalTo(self).offset(-5);
}];
[self.warningLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self).offset(5);
make.right.equalTo(self.mas_right).equalTo(@-5);
make.bottom.equalTo(self).offset(-5);
make.height.equalTo(@40);
}];
[self.dislikeButton mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.width.equalTo(@30);
make.top.equalTo(self).equalTo(@5);
make.right.equalTo(self.mas_right).equalTo(@-5);
}];
}
@end