广告重构
2016-11-21 19:17:17 0 举报
广告重构是一种创新的营销策略,通过对原有广告的重新设计和优化,使其更具吸引力和有效性。这种方法可以包括改变广告的视觉元素,如颜色、字体和图像,以更好地吸引目标受众的注意力。同时,也可以对广告的内容进行改写,使其更具说服力和影响力。此外,还可以通过调整广告的发布渠道和时间,以提高其覆盖率和曝光率。总的来说,广告重构是一种有效的营销工具,可以帮助企业提高品牌知名度,增加销售额,实现商业目标。
作者其他创作
大纲/内容
PAADContentProtocol
/** 单帧广告View接口 *///指定初始化方法- (instancetype)initWithxxx;//广告单帧view加载数据- (void)loadADData:(ADContent *)ADContent;
PDADView
N
UIView
/** 单帧广告view */
PAADViewProtocol
UIView:PDADView
/** 对外广告View */
PDADDataCenter
//请求广告数据- (void)requestDataWithBoothCodes:(NSArray *)boothCodes keyWords:(NSArray *)keyWords requestType:(ADRequestType)requestType customTimeOut:(int)timeout success:(void(^)(ADBannerModel *bannerModel))success failure:(void(^)(NSError *error))failure;
PDADManager
ADBannerModuleProtocol
/** 广告组件统一对外接口 *///创建广告View & 加载数据- (UIView*)createADViewWithFrame:(CGRect)frame showType:(ADShowStyle)showType customView:(UIView*)customView boothCode:(NSString *)boothCode keyWords:(NSArray*)keyWords requestType:(ADRequestType) requestType customTimeOut:(int)timeout//创建广告View- (UIView*)createADViewWithFrame:(CGRect)frame showType:(ADShowStyle)showType customView:(UIView*)customView;//请求广告数据+ (void)requestDataWithBoothCodes:(NSArray *)boothCodes keyWords:(NSArray *)keyWords requestType:(ADRequestType)requestType customTimeOut:(int)timeout success:(void(^)(ADBannerModel *bannerModel))success failure:(void(^)(NSError *error))failure;
PDADViewDelegate
/**广告View状态回调 */- (void)didADViewHeightChanged:(CGfloat)height; //高度变化- (void)didADViewStateChanged:(PDADViewState)state; //广告view的状态变化,例如:未加载数据、正在加载数据、已加载数据、需隐藏、需展示
0 条评论
下一页