ViewController.h 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // ViewController.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2018/12/29.
  6. // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "Header.h"
  10. #import "popViewController.h"
  11. #import <AVFoundation/AVFoundation.h>
  12. @interface ViewController : UIViewController
  13. @property (nonatomic,strong) UITableView *tableView;
  14. @property (nonatomic,strong) UIImageView *topImageView;
  15. @property (nonatomic,strong) UIImageView *detailImageView;
  16. @property(nonatomic,strong)NSMutableArray *dataArray;
  17. /*
  18. *弹出表选择框使用
  19. */
  20. @property (strong, nonatomic) popViewController *buttonPopVC;
  21. @property (strong,nonatomic)popViewController *itemPopVC;
  22. /**
  23. * 页数
  24. */
  25. @property (nonatomic,assign) int pageIndex;
  26. //音频播放器
  27. @property(nonatomic,strong)AVAudioPlayer *player;
  28. @end