Objective-C Localize 日本語、英語、フランス語

Localize 日本語、英語、フランス語の設定方法です。

ViewController.m

#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

Localizable.strings(Japanese)

"myMessage" = "こんにちは";

Localizable.strings(English)

"myMessage" = "Hello";

Localizable.strings(French)

"myMessage" = "Bonjour";

GitHub Localize

▫️参考ページ


  

目 次