16 lines
384 B
Objective-C
16 lines
384 B
Objective-C
//
|
|
// GiGaCommentView.h
|
|
// LXAnimationTest
|
|
//
|
|
// Created by lianxiang on 2018/8/14.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "GiGaCommentModel.h"
|
|
@interface GiGaCommentView : UIView
|
|
@property(nonatomic,strong) GiGaCommentModel *msgModel;
|
|
-(instancetype)initWithMsgModel:(GiGaCommentModel *)model height:(CGFloat)height;
|
|
|
|
@end
|