22 lines
364 B
Objective-C
22 lines
364 B
Objective-C
//
|
|
// HBTextField.m
|
|
// QinJiuTV
|
|
//
|
|
// Created by HI_LOSER on 2024/5/21.
|
|
//
|
|
|
|
#import "HBTextField.h"
|
|
|
|
@implementation HBTextField
|
|
|
|
- (CGSize)intrinsicContentSize {
|
|
return UILayoutFittingExpandedSize; // 表示在可用范围内尽可能给予最大可用尺寸
|
|
}
|
|
|
|
-(CGRect)leftViewRectForBounds:(CGRect)bounds {
|
|
return CGRectMake(0, 0, 32, 32);
|
|
}
|
|
|
|
|
|
@end
|