// // 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