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