| 1234567891011121314151617181920212223242526272829303132333435 | 
							- //
 
- //  KWTextField.h
 
- //  westkissMob
 
- //
 
- //  Created by iOS on 2022/9/19.
 
- //
 
- #import <UIKit/UIKit.h>
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface KWTextField : UITextField
 
- @end
 
- @interface UIView(baseInit)
 
- - (void)sleep:(NSTimeInterval)time;
 
- - (void)addSubviews:(NSArray <UIView *>*)arr;
 
- // MARK: - base create
 
- + (UIView *)baseV ;
 
- + (UILabel *)baseLb ;
 
- + (UIImageView *)baseImgV ;
 
- + (UIStackView *)baseStackV:(BOOL)isVertical;
 
- + (UIImage *)snapshotWithView:(UIView *)view;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |