iOS MJRefresh上拉加载功能,每次运行下面都会有“上拉加载”这句话,中英文切换?

iOS MJRefresh上拉加载功能,每次运行下面都会有“上拉加载”这句话,中英文切换?_第1张图片
英文改成中文方法:
1.公共.strings文件中新增
NSString *const MJRefreshHeaderIdleText = @"下拉可以刷新";
NSString *const MJRefreshHeaderPullingText = @"松开立即刷新";
NSString *const MJRefreshHeaderRefreshingText = @"正在刷新数据中...";


NSString *const MJRefreshAutoFooterIdleText = @"点击或上拉加载更多";
NSString *const MJRefreshAutoFooterRefreshingText = @"正在加载更多的数据...";
NSString *const MJRefreshAutoFooterNoMoreDataText = @"已经全部加载完毕";


NSString *const MJRefreshBackFooterIdleText = @"上拉可以加载更多";
NSString *const MJRefreshBackFooterPullingText = @"松开立即加载更多";
NSString *const MJRefreshBackFooterRefreshingText = @"正在加载更多的数据...";
NSString *const MJRefreshBackFooterNoMoreDataText = @"已经全部加载完毕";

2.在info.plist文件中找到“Localization native development region”字段value值改成“China”


3.运行之后就变成中文

PS:这样修改是根据运行系统环境的语言环境变化而变化,若在模拟器上运行,需要修改模拟器语言环境位中文才可以;


君凯商联网-iOS-字唐名僧

你可能感兴趣的:(OC篇)