SelectedViewController.h
603 Bytes
//
// SelectedViewController.h
// SCIOLiveCN
//
// Created by dly on 2018/6/7.
// Copyright © 2018年 dly. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol SelectedProtocol <NSObject>
- (void)selected:(NSString *)selectedStr
type:(NSInteger)type;
@end
@interface SelectedViewController : UIViewController
@property (nonatomic, copy) NSString *url;
@property (nonatomic, strong) NSArray *dataArray;
@property (nonatomic, assign) NSInteger type;
@property (nonatomic, copy) NSString *selectedText;
@property (nonatomic, assign) id<SelectedProtocol> selectedDelegate;
@end