iOS使用runtime修改文字框(TextField)的佔位文字顏色_IOS

來源:互聯網
上載者:User

前言

在大家平時的開發中,有時候會遇到背景深色的介面上需要添加TextField,TextField預設的佔位顏色也是深灰色,比較難看清,這時候就需要修改展位文字的顏色,可是系統沒有提供相應的方法,那麼就需要我們自己來自訂了

修改後的效果

話不多說,下面上代碼:

// .h檔案#import <UIKit/UIKit.h>@interface UITextField (Placeholder)@property UIColor *placeholderColor;@end
// .m檔案#import "UITextField+Placeholder.h"#import <objc/message.h>NSString * const placeholderColorName = @"placeholderColor";@implementation UITextField (Placeholder)+ (void)load{ // 擷取setPlaceholder Method setPlaceholder = class_getInstanceMethod(self, @selector(setPlaceholder:)); // 擷取bs_setPlaceholder Method bs_setPlaceholder = class_getInstanceMethod(self, @selector(bs_setPlaceholder:)); // 交換方法 method_exchangeImplementations(setPlaceholder, bs_setPlaceholder);}// OC最喜歡懶載入,用的的時候才會去載入// 需要給系統UITextField添加屬性,只能使用runtime- (void)setPlaceholderColor:(UIColor *)placeholderColor{ // 設定關聯 objc_setAssociatedObject(self,(__bridge const void *)(placeholderColorName), placeholderColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC); // 設定佔位文字顏色 UILabel *placeholderLabel = [self valueForKeyPath:@"placeholderLabel"]; placeholderLabel.textColor = placeholderColor;}- (UIColor *)placeholderColor{ // 返回關聯 return objc_getAssociatedObject(self, (__bridge const void *)(placeholderColorName));}// 設定佔位文字,並且設定佔位文字顏色- (void)bs_setPlaceholder:(NSString *)placeholder{ // 1.設定佔位文字 [self bs_setPlaceholder:placeholder]; // 2.設定佔位文字顏色 self.placeholderColor = self.placeholderColor;}@end

總結

以上就是iOS使用runtime修改文字框佔位文字顏色的全部內容,希望對大家開發IOS能有所協助,如果有疑問大家可以留言交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.