RightViewController.h 531 Bytes
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10
//
//  RightViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/4/28.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

11 12 13 14 15 16 17 18 19 20 21
/**
 *  右侧控制器选中代理
 */
@protocol RightVCselectedDelegate <NSObject>

/**
 *  选中控制器返回当前下标
 *
 */
@required

曹云霄's avatar
曹云霄 committed
22
- (void)SelectedControllerWithIndex:(NSString *)Name;
23 24 25

@end

曹云霄's avatar
曹云霄 committed
26 27
@interface RightViewController : BaseViewController

28 29 30 31 32

@property (nonatomic,strong) id<RightVCselectedDelegate>delegate;



曹云霄's avatar
曹云霄 committed
33
@end