修改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];