12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * Tencent is pleased to support the open source community by making QMUI_iOS available.
- * Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
- * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
- * http://opensource.org/licenses/MIT
- * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- //
- // UITextField+QMUI.m
- // qmui
- //
- // Created by QMUI Team on 2017/3/29.
- //
- #import "UITextField+QMUI.h"
- #import "NSObject+QMUI.h"
- #import "QMUICore.h"
- #import "UIImage+QMUI.h"
- @implementation UITextField (QMUI)
- + (void)load {
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
-
- // iOS 12 及以下版本需要重写该方法才能替换
- if (@available(iOS 13.0, *)) {
- } else {
- OverrideImplementation([UITextField class], NSSelectorFromString(@"_clearButtonImageForState:"), ^id(__unsafe_unretained Class originClass, SEL originCMD, IMP (^originalIMPProvider)(void)) {
- return ^UIImage *(UITextField *selfObject, UIControlState firstArgv) {
-
- if (selfObject.qmui_clearButtonImage) {
- if (firstArgv & UIControlStateHighlighted) {
- return [selfObject.qmui_clearButtonImage qmui_imageWithAlpha:UIControlHighlightedAlpha];
- }
- return selfObject.qmui_clearButtonImage;
- }
-
- // call super
- UIImage *(*originSelectorIMP)(id, SEL, UIControlState);
- originSelectorIMP = (UIImage *(*)(id, SEL, UIControlState))originalIMPProvider();
- UIImage *result = originSelectorIMP(selfObject, originCMD, firstArgv);
- return result;
- };
- });
- }
- });
- }
- - (void)setQmui_selectedRange:(NSRange)qmui_selectedRange {
- self.selectedTextRange = [self qmui_convertUITextRangeFromNSRange:qmui_selectedRange];
- }
- - (NSRange)qmui_selectedRange {
- return [self qmui_convertNSRangeFromUITextRange:self.selectedTextRange];
- }
- - (UIButton *)qmui_clearButton {
- return [self qmui_valueForKey:@"clearButton"];
- }
- // - (id) _clearButtonImageForState:(unsigned long)arg1;
- static char kAssociatedObjectKey_clearButtonImage;
- - (void)setQmui_clearButtonImage:(UIImage *)qmui_clearButtonImage {
- objc_setAssociatedObject(self, &kAssociatedObjectKey_clearButtonImage, qmui_clearButtonImage, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
- [self.qmui_clearButton setImage:qmui_clearButtonImage forState:UIControlStateNormal];
- // 如果当前 clearButton 正在显示的时候把自定义图片去掉,需要重新 layout 一次才能让系统默认图片显示出来
- if (!qmui_clearButtonImage) {
- [self setNeedsLayout];
- }
- }
- - (UIImage *)qmui_clearButtonImage {
- return (UIImage *)objc_getAssociatedObject(self, &kAssociatedObjectKey_clearButtonImage);
- }
- - (NSRange)qmui_convertNSRangeFromUITextRange:(UITextRange *)textRange {
- NSInteger location = [self offsetFromPosition:self.beginningOfDocument toPosition:textRange.start];
- NSInteger length = [self offsetFromPosition:textRange.start toPosition:textRange.end];
- return NSMakeRange(location, length);
- }
- - (UITextRange *)qmui_convertUITextRangeFromNSRange:(NSRange)range {
- if (range.location == NSNotFound || NSMaxRange(range) > self.text.length) {
- return nil;
- }
- UITextPosition *beginning = self.beginningOfDocument;
- UITextPosition *startPosition = [self positionFromPosition:beginning offset:range.location];
- UITextPosition *endPosition = [self positionFromPosition:beginning offset:NSMaxRange(range)];
- return [self textRangeFromPosition:startPosition toPosition:endPosition];
- }
- @end
|