| 1234567891011121314151617181920212223 |
- //
- // MessageDetailViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-5-10.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MessageDetailViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
- @property (strong,nonatomic) NSMutableDictionary* params;
- @property (strong, nonatomic) IBOutlet UITableView *tableview;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property int limit;
- @property int offset;
- @property (strong,nonatomic) NSString* s_id;
- @property (strong,nonatomic) NSString* e_id;
- @property (strong,nonatomic) NSMutableArray * messageinfo;
- @property (strong,nonatomic) NSMutableArray * messagelist;
- @property long index;
- @end
|