12345678910111213141516171819 |
- //
- // JXProgressVC.h
- // shiku_im
- //
- // Created by Apple on 16/10/10.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import "admobViewController.h"
- @interface JXProgressVC : admobViewController
- @property (nonatomic,strong) UIProgressView * progressView;//进度条
- @property (nonatomic,strong) UILabel * progressLabel;//进度
- @property (nonatomic,strong) NSArray * dataArray;//数据
- @property (nonatomic,assign) long dbFriends;
- @property (nonatomic,strong) UILabel * dbCountLabel;
- @property (nonatomic,strong) UILabel * sysCountLabel;
- @property (nonatomic,strong) UIButton * comBtn;
- @end
|