18 lines
413 B
Objective-C
18 lines
413 B
Objective-C
//
|
|
// GiGaFlyingCommitInputView.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/28.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface GiGaFlyingCommitInputView : UIView
|
|
|
|
@property (nonatomic, copy) void (^SendCommentHandler)(NSString *content);
|
|
@property (nonatomic, copy) NSString *palceholderText;
|
|
-(void)setPalceholderText:(NSString *)palceholderText;
|
|
|
|
@end
|