| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // ViewController.h
- // Haishenghai-master
- //
- // Created by GG on 2018/12/29.
- // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "Header.h"
- #import "popViewController.h"
- #import <AVFoundation/AVFoundation.h>
- @interface ViewController : UIViewController
- @property (nonatomic,strong) UITableView *tableView;
- @property (nonatomic,strong) UIImageView *topImageView;
- @property (nonatomic,strong) UIImageView *detailImageView;
- @property(nonatomic,strong)NSMutableArray *dataArray;
- /*
- *弹出表选择框使用
- */
- @property (strong, nonatomic) popViewController *buttonPopVC;
- @property (strong,nonatomic)popViewController *itemPopVC;
- /**
- * 页数
- */
- @property (nonatomic,assign) int pageIndex;
- //音频播放器
- @property(nonatomic,strong)AVAudioPlayer *player;
- @end
|