NYLIVipCoachContentView.m 491 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NYLIVipCoachContentView.m
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/1/24.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import "NYLIVipCoachContentView.h"
  9. @interface NYLIVipCoachContentView(){
  10. }
  11. @end
  12. @implementation NYLIVipCoachContentView
  13. + (nonnull instancetype)createVipCoachContentView {
  14. NYLIVipCoachContentView *view = [[[NSBundle mainBundle] loadNibNamed:@"NYLIVipCoachContentView" owner:nil options:nil] lastObject];
  15. return view;
  16. }
  17. @end