BogoGuideFirstView.m 475 B

123456789101112131415161718192021
  1. //
  2. // BogoGuideView.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/3/19.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoGuideFirstView.h"
  9. @implementation BogoGuideFirstView
  10. - (void)awakeFromNib{
  11. NSDictionary *infoPlist = [[NSBundle mainBundle] infoDictionary];
  12. NSString *icon = [[infoPlist valueForKeyPath:@"CFBundleIcons.CFBundlePrimaryIcon.CFBundleIconFiles"] lastObject];
  13. self.appIcon.image = [UIImage imageNamed:icon];
  14. }
  15. @end