强制本地化图像或图像资源

问题描述 投票:0回答:1

如这个问题,如何强制 NSLocalizedString 使用特定语言

我可以通过这种方法强制本地化。

头文件

@interface NSBundle (Language)
+(void)setLanguage:(NSString*)language;
@end

实施

#import <objc/runtime.h>

static const char _bundle=0;

@interface BundleEx : NSBundle

@end

@implementation BundleEx
-(NSString*)localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)tableName
{
    NSBundle* bundle=objc_getAssociatedObject(self, &_bundle);
    return bundle ? [bundle localizedStringForKey:key value:value table:tableName] : [super                            localizedStringForKey:key value:value table:tableName];
}

@end

@implementation NSBundle (Language)
+(void)setLanguage:(NSString*)language
{
  static dispatch_once_t onceToken;
   dispatch_once(&onceToken, ^
   {
      object_setClass([NSBundle mainBundle],[BundleEx class]);
   });
    objc_setAssociatedObject([NSBundle mainBundle], &_bundle, language ? [NSBundle bundleWithPath:    [[NSBundle mainBundle] pathForResource:language ofType:@"lproj"]] : nil,  OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end

之后,我需要本地化图像,因此,我确实喜欢这样。 本地化资产目录

问题是当我以编程方式更改本地化时,它永远不会改变图像。

 [NSBundle setLanguage:@"en"];

只有我的字符串被改变。我该怎么办?我尝试过使用普通图像和此类资产中的图像。但除非我真的在设置中更改手机语言,否则它不起作用。但我需要以编程方式更改/强制本地化,并且需要更改图像(不仅仅是文本)。我可以知道该怎么做吗?

enter image description here

ios objective-c image localization nslocalizedstring
1个回答
1
投票

我知道这是一个老问题,但仍然回答以供将来参考。


确保在 main.m 中设置应用程序语言,它就像图像的魅力一样。

OBS:不使用xcassets。

像这样:

int main(int argc, char * argv[])
{
    @autoreleasepool
    {
        NSString *language = <Get Your Language from somewhere> // I use NSUserDefaults for that

        if (language == nil)
        {
            // Gets the device current language
            language = [[[[NSBundle mainBundle] preferredLocalizations] objectAtIndex:0] substringToIndex:2];
        }

        [NSBundle setLanguage:language];

        return UIApplicationMain(argc, argv, nil, NSStringFromClass([YourAppDelegate class]));
    }
}

此外,我在 BundleEx 实现上有这个方法。本地化图像不需要它,但例如我拥有的 .html 模板需要它。

- (NSString *)pathForResource:(NSString *)name ofType:(NSString *)ext
{
    NSBundle *bundle = objc_getAssociatedObject(self, &_bundle);

    NSString *pathName = [bundle pathForResource:name ofType:ext];
    return pathName ?: [super pathForResource:name ofType:ext];
}
© www.soinside.com 2019 - 2024. All rights reserved.