| 1234567891011121314151617181920 |
- //
- // MessageViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-5-10.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ApexMobileDB.h"
- #import "ApexMobileNetwork.h"
- @interface MessageViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
- @property (strong, nonatomic) IBOutlet UITableView *tableview;
- @property int offset;
- @property int limit;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong,nonatomic) UIButton* btnrefresh;
- @property (strong,nonatomic) NSMutableArray * messageinfo;
- @end
|