You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.1 KiB
72 lines
1.1 KiB
// |
|
// baseViewController.h |
|
// tianyin |
|
// |
|
// Created by xTT on 15/5/28. |
|
// Copyright (c) 2015年 xTT. All rights reserved. |
|
// |
|
|
|
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_CELL_HEIGHT 54 |
|
|
|
|
|
#define tagCellSwitch 200 |
|
|
|
#define tagAlertDelete 1000 |
|
|
|
|
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
#import "SVProgressHUD.h" |
|
|
|
#import "User.h" |
|
#import "Device.h" |
|
#import "Circle.h" |
|
|
|
#import "MyHttp.h" |
|
#import "myHelper.h" |
|
|
|
#import "Masonry.h" |
|
#import "UIImageView+WebCache.h" |
|
#import "CommonPopView.h" |
|
|
|
|
|
|
|
@interface baseViewController : ZXNavigationBarController |
|
|
|
@property (nonatomic, strong) NSMutableArray *myDataSource; |
|
|
|
/// 空白页标题 |
|
@property (nonatomic ,strong) NSString *emptyTitle; |
|
|
|
/// 空白页提示文字 |
|
@property (nonatomic ,strong) NSString *emptyText; |
|
|
|
/// 空白页按钮标题 |
|
@property (nonatomic ,strong) NSString *buttonTitle; |
|
|
|
/// 空白页按钮文字颜色 |
|
@property (nonatomic ,strong) UIColor *buttonTitleColor; |
|
|
|
/// 空白页按钮背景图片 |
|
@property (nonatomic ,strong) UIImage *buttonImg; |
|
|
|
- (void)goBack:(id)sender; |
|
|
|
- (IBAction)rightBarItemClick:(UIBarButtonItem *)sender; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
MARK: 显示声网的视频通话的页面 |
|
*/ |
|
- (void)showCallViewWithDic:(NSDictionary*)dic; |
|
|
|
@end
|
|
|