26 lines
535 B
Objective-C
26 lines
535 B
Objective-C
//
|
|
// PYCellInputView.h
|
|
// Food
|
|
//
|
|
// Created by ko1o on 2019/7/25.
|
|
// Copyright © 2019年 ko1o. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PYCellInputView : UIView
|
|
|
|
+ (PYCellInputView *)cellInputViewWithTitle:(NSString *)title titleWidth:(CGFloat)titleWidth placeholder:(NSString *)placeholder;
|
|
|
|
@property (nonatomic, strong) UITextField *texfField;
|
|
|
|
@property (nonatomic, strong) UILabel *titleLabel;
|
|
|
|
@property (nonatomic, strong) UIView *bottomLineView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|