iOS 用keypath设置一些属性

Posted 笔记而已

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 用keypath设置一些属性相关的知识,希望对你有一定的参考价值。

1.UIButton title 距左边显

button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;

  

  

2.UITextField placeholder 颜色

方法一:

textField.placeholder = @"this is placeholder";  
[textFieldsetValue:[UIColor redColor]forKeyPath:@"_placeholderLabel.textColor"];  
[textFieldsetValue:[UIFontboldSystemFontOfSize:16]forKeyPath:@"_placeholderLabel.font"]; 

  

方法二:(ios 6 之后)

NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc]initWithString:@"this is placeholder"];

[placeholderaddAttribute:NSForegroundColorAttributeName
                  value:[UIColor redColor]
                  range:NSMakeRange(0, placeholder.length)];

[placeholderaddAttribute:NSFontAttributeName
                  value:[UIFontboldSystemFontOfSize:14]
                  range:NSMakeRange(0, placeholder.length)];


textField.attributedPlaceholder = placeholder;

 

3.隐藏 tabBar 顶部的分割线

[self.tabBar setValue:@(YES) forKeyPath:@"_hidesShadow"];

  

  

以上是关于iOS 用keypath设置一些属性的主要内容,如果未能解决你的问题,请参考以下文章

是否可以通过扩展中的 Swift 4 KeyPaths 在 UIView 上设置属性?

iOS开发UI篇—核心动画(基础动画)

iOS开发UI篇—核心动画(基础动画)

IOS开发-OC学习-常用功能代码片段整理

iOS开发UI篇—核心动画(基础动画)

iOS动画(三):核心动画中缩放和旋转(Swift)