21 lines
546 B
Objective-C
21 lines
546 B
Objective-C
//
|
|
// GiGaFeedBackKindView.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/23.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "GIGaFeedKind.h"
|
|
|
|
@interface GiGaFeedBackKindView : UIViewController
|
|
typedef void (^SelectedItemBlock)(GIGaFeedKind *kind);
|
|
|
|
+(GiGaFeedBackKindView *)showAt:(UIViewController *)vc atRow:(NSInteger)row;
|
|
@property(nonatomic,strong)GIGaFeedKind *showKind;
|
|
@property(nonatomic) NSInteger defultRow;
|
|
@property (nonatomic, copy) SelectedItemBlock selectedItemBlock;
|
|
|
|
@end
|