22 lines
373 B
Objective-C
Executable File
22 lines
373 B
Objective-C
Executable File
//
|
|
// CRLineView.h
|
|
// CRBoxInputView_Example
|
|
//
|
|
// Created by Chobits on 2019/6/10.
|
|
// Copyright © 2019 BearRan. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CRLineView : UIView
|
|
|
|
@property (strong, nonatomic) UIView *lineView;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame UNAVAILABLE_ATTRIBUTE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|