1、创建新工程;
2、配置环境:
(1)
(2)
(3)检查本地添加信息:
2、创建:Localizable.string文件
创建新文件(文件命名:
Localizable.string
3、设置string文件属性:
4、编辑string文件内容:
(1)
(2)
(3)
5、展示:
在ViewController.m中操作:
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 200, 30)];
label.backgroundColor = [UIColor yellowColor];
label.textColor = [UIColor purpleColor];
label.text = NSLocalizedString(@"name_string", nil);
[self.view addSubview:label];
即可