iOS 键盘上面done改成汉语(白色的时候设置颜色)
2020-09-21 本文已影响0人
路人甲_kbb
修改H5中键盘上方done的颜色和汉语
1、修改xcode 中项目info---->Localization native development region中的English为China(默认是English)
2、 如果done为白色的话,可能是你全局设置UIBarButtonItem 的颜色导致的
UIBarButtonItem *apprance = [UIBarButtonItem appearance];
[apprance setTitleTextAttributes:@{NSForegroundColorAttributeName:WYGlobalRedTextColor,NSFontAttributeName:[UIFont systemFontOfSize:15]} forState:UIControlStateNormal];