設置 textfield的 placeholder 字體顏色以及大小
NSMutableAttributedString * attributedPlaceholder = [[NSMutableAttributedString alloc]initWithString:@"XXXXX"];
? ? [attributedPlaceholder addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16 weight:UIFontWeightSemibold] range:NSMakeRange(0, 5)];
? ? _searchTF.attributedPlaceholder = attributedPlaceholder;
注意 設置??_searchTF.attributedPlaceholder 時要放在??_searchTF.font 之后咖为。不然會發(fā)現(xiàn)字體大小設置無用。原因大致是因為 textfield 本身并不能直接給placeholder賦值 那么placeholder會默認使用 textfield.font 的字體大小冰垄。