#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UILabel *lbMassage;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
// ローカライズ文字列を使用
self.lbMassage.text = NSLocalizedString(@"myMessage", nil);
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
"myMessage" = "こんにちは";
"myMessage" = "Hello";
"myMessage" = "Bonjour";
GitHub Localize
▫️参考ページ
コメントをお書きください