GromoreDemoAdDisplayView.m 738 B

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