博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oc-UITextView占位文字及占位文字颜色扩展(可在xib中直接使用)
阅读量:5140 次
发布时间:2019-06-13

本文共 2151 字,大约阅读时间需要 7 分钟。

使用案例

.h文件

```

#import <UIKit/UIKit.h>

 

// 在定义类的前面加上IB_DESIGNABLE宏

IB_DESIGNABLE // 动态刷新

NS_ASSUME_NONNULL_BEGIN

 

@interface UITextView (HWCategory)

@property (nonatomic, strong) IBInspectable NSString *placeholder;

@property (nonatomic, strong) IBInspectable UIColor *placeholderColor;

 

@end

 

 

NS_ASSUME_NONNULL_END

```

 

.m文件

```

#import "UITextView+HWCategory.h"

#import <objc/runtime.h>

 

static NSString const *placeholderKey = @"placeholderKey";

static NSString const *placeholderLabelKey = @"placeholderLabelKey";

@implementation UITextView (HWCategory)

- (void)setPlaceholder:(NSString *)placeholder {

    objc_setAssociatedObject(self, (__bridge const void * _Nonnull)(placeholderKey), placeholder, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

    if (![self.subviews containsObject:self.placeholderLabel]) {

        [self getPlaceholderLabel];

        self.placeholderLabel.text = placeholder;

    } else {

        self.placeholderLabel.text = placeholder;

    }

}

- (void)setPlaceholderColor:(UIColor *)placeholderColor {

    if (![self.subviews containsObject:self.placeholderLabel]) { return; }

    self.placeholderLabel.textColor = placeholderColor;

}

- (UIColor *)placeholderColor {

    return self.placeholderLabel.textColor;

}

- (NSString *)placeholder {

    return objc_getAssociatedObject(self, (__bridge const void * _Nonnull)(placeholderKey));

}

- (void)setPlaceholderLabel:(UILabel *)placeholderLabel {

    objc_setAssociatedObject(self, (__bridge const void * _Nonnull)(placeholderLabelKey), placeholderLabel, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}

 

- (UILabel *)placeholderLabel {

    id label = objc_getAssociatedObject(self, (__bridge const void * _Nonnull)(placeholderLabelKey));

    if (!label) {

        [self getPlaceholderLabel];

    }

    return label;

}

- (UILabel *)getPlaceholderLabel {

    if (!self.font) {

        self.font = [UIFont systemFontOfSize:14];

    }

    UILabel *lab = [[UILabel alloc] initWithFrame:self.bounds];

    lab.numberOfLines = 0;

    lab.font = self.font;

    lab.textColor = [UIColor lightGrayColor];

    [self addSubview:lab];

    [self setValue:lab forKey:@"_placeholderLabel"];

    [self setPlaceholderLabel:lab];

    [self sendSubviewToBack:self.placeholderLabel];

    return lab;

}

@end

``` 

转载于:https://www.cnblogs.com/lhw520/p/10286830.html

你可能感兴趣的文章
关于mysql中GROUP_CONCAT函数的使用
查看>>
OD使用教程20 - 调试篇20
查看>>
Java虚拟机(JVM)默认字符集详解
查看>>
Java Servlet 过滤器与 springmvc 拦截器的区别?
查看>>
(tmp >> 8) & 0xff;
查看>>
linux命令之ifconfig详细解释
查看>>
NAT地址转换
查看>>
Nhibernate 过长的字符串报错 dehydration property
查看>>
Deque - leetcode 【双端队列】
查看>>
gulp插件gulp-ruby-sass和livereload插件
查看>>
免费的大数据学习资料,这一份就足够
查看>>
clientWidth、clientHeight、offsetWidth、offsetHeight以及scrollWidth、scrollHeight
查看>>
企业级应用与互联网应用的区别
查看>>
itext jsp页面打印
查看>>
Perl正则表达式匹配
查看>>
DB Change
查看>>
nginx --rhel6.5
查看>>
Eclipse Python插件 PyDev
查看>>
selenium+python3模拟键盘实现粘贴、复制
查看>>
网站搭建(一)
查看>>