123456789101112131415161718192021222324 |
- //
- // GromoreDemoAdDisplayView.m
- // ABUDemo
- //
- // Created by bytedance on 2022/2/15.
- // Copyright © 2022 bytedance. All rights reserved.
- //
- #import "GromoreDemoAdDisplayView.h"
- @implementation GromoreDemoAdDisplayView
- - (void)drawRect:(CGRect)rect {
- [super drawRect:rect];
- NSMutableParagraphStyle *style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
- style.alignment = NSTextAlignmentCenter;
- [@"此处用于展示banner广告" drawInRect:CGRectMake(0, 30, CGRectGetWidth(self.frame), 30) withAttributes:@{
- NSFontAttributeName : RQRegularFont(16),
- NSForegroundColorAttributeName : [RQ_MAIN_COLOR colorWithAlphaComponent:0.5],
- NSParagraphStyleAttributeName : style
- }];
- }
- @end
|