29 lines
697 B
Objective-C
29 lines
697 B
Objective-C
//
|
||
// YooseeCenterViewController.h
|
||
// Ifish
|
||
//
|
||
// Created by imac on 16/6/28.
|
||
// Copyright © 2016年 lianxiang. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
#import "DeviceModel.h"
|
||
#import "IfishCameraModel.h"
|
||
/**
|
||
* 新增tab 栏后此界面不用 ????????why! 呵呵 个人感觉列表进入视频较好
|
||
|
||
*/
|
||
|
||
@interface YooseeCenterViewController : UIViewController<ICSDrawerControllerPresenting,ICSDrawerControllerChild>
|
||
|
||
//@property (retain, nonatomic) NSMutableArray *yooseeDeviceArr;
|
||
|
||
@property(nonatomic,weak)ICSDrawerController*drawer;
|
||
|
||
@property(nonatomic,copy) DeviceModel *devicemodel;
|
||
|
||
@property(nonatomic,strong) IfishCameraModel *cameraModel;
|
||
|
||
|
||
@end
|