美文网首页
iOS项目快速国际化

iOS项目快速国际化

作者: 妳笇what | 来源:发表于2017-09-11 18:06 被阅读53次

最近刚接手了一个直播的项目,但是面向的用户人群是境外华侨和各国人士,整个项目本身就很大。很无奈,但是还得弄啊。怎么办?我就用了一天将完整的整个项目实现了国际化。基础的我就不讲了,想了解的看《iOS之应用程序国际化》《iOS国际化开发》。下面开始讲讲我的方法:
工具
由于也是第一次接触到国际化,抱着向前辈学习思想(其实我就是想偷懒),找到了这个工具,这个可以支持中文和繁体文导出,用它你整个项目中的中文都可以获取到,我fork了这个项目并且在此项目的基础上修改了一下正则表达式,添加了支持xib,storyBoard,swift文件的支持,大家可以用这个国际化导出中文工具
Demo效果

录制的

代码

扩展
只需要在项目中导入Categories文件夹,就可以实现项目国际化了。
主要的方法:
扩展NSBundle
#import "NSBundle+I18N.h"
#import <objc/runtime.h>


static const NSString *bundleKey = @"bundleKey";

@interface BundleEx : NSBundle

@end

@implementation BundleEx

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

@end


@implementation NSBundle (I18N)

+ (void)setMainBundelLanguage:(NSString *)language {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        object_setClass([NSBundle mainBundle], [BundleEx class]);
    });
    //设置关联
    objc_setAssociatedObject([NSBundle mainBundle], &bundleKey, language ? [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:language ofType:@"lproj"]] : nil, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

+ (NSBundle *)getCurrentMainBundel {
    NSString * currentLanguage = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleLanguages"][0];
    NSString *path = [[ NSBundle mainBundle ] pathForResource:currentLanguage ofType:@"lproj" ];
    NSBundle * current = [NSBundle bundleWithPath:path];
    return current;
}


@end

扩展UILable

#import "UILabel+I18N.h"
#import <objc/runtime.h>

@implementation UILabel (I18N)

+(void)load {
    SEL originalSelector = @selector(setText:);
    SEL swizzledSelector = @selector(swizzled_setText:);
    Method originMehtod = class_getInstanceMethod([self class], @selector(setText:));
    Method otherMehtod = class_getInstanceMethod([self class], @selector(swizzled_setText:));
    BOOL didAddMethod =
    class_addMethod(self,
                    originalSelector,
                    method_getImplementation(otherMehtod),
                    method_getTypeEncoding(otherMehtod));
    if (didAddMethod) {
        class_replaceMethod(self,
                            swizzledSelector,
                            method_getImplementation(originMehtod),
                            method_getTypeEncoding(originMehtod));
    }
    else {
        // 交换2个方法的实现
        method_exchangeImplementations(otherMehtod, originMehtod);
    }
}

- (void)swizzled_setText:(NSString *)string {
    [self swizzled_setText:NSLocalizedString(string, nil)];
}

@end

扩展UIImage

#import "UIImage+I18N.h"
#import <objc/runtime.h>

@implementation UIImage (I18N)

+(void)load {
    Method otherMehtod = class_getClassMethod(self, @selector(swizzled_imageNamed:));
    Method originMehtod = class_getClassMethod(self, @selector(imageNamed:));
    // 交换2个方法的实现
    method_exchangeImplementations(otherMehtod, originMehtod);
}

+ (UIImage *)swizzled_imageNamed:(NSString *)name {
    return [self swizzled_imageNamed:NSLocalizedString(name, nil)];
}

@end

源码
点击这里下载源代码

相关文章

  • iOS项目快速国际化

    最近刚接手了一个直播的项目,但是面向的用户人群是境外华侨和各国人士,整个项目本身就很大。很无奈,但是还得弄啊。怎么...

  • iOS国际化详解

    iOS国际化详解 对于iOS国际化,一般包括: 1. 工程项目名称国际化2. 工程内控件内容国际化3. 工程内图片...

  • iOS快速国际化(适合项目后期)

    iOS国际化的时候,怎样快速找到需要格式化的中文内容1,先把项目中的class文件拷贝到iOS模拟器的沙盒中的do...

  • iOS项目快速实现国际化

    项目没有提前写好NSLocalizedString,然后在项目N期后需要做国际化是一件很头痛的事情。给大家分享一下...

  • 3.1、Flutter:iOSer

    零、项目结构、资源、国际化等 1、资源 Flutter项目的资源放在iOS的Images.xcassetResou...

  • android 查看项目中所有的中文

    如果项目初期没有定有要求要开发国际化,到项目中后期在改为国际化,那项目中中文很多。下面提供一个正则方便大家快速查找...

  • iOS 中文项目快速进行英文国际化

    最近接手了一个新的项目,是个纯中文项目,需要把项目里面的中文全部替换成英文.由于项目不熟悉,如果用手机一边使用一边...

  • iOS 快速国际化

    第一步、xcode用正则方法替换字符串Replace匹配模式Regular Expression正则表达式 @"...

  • 项目开发相关文章

    iOS国际化

  • iOS国际化

    最近项目要做语言国际化,找了一下资料,下面这个文章总结的很全面,果断收藏了棠狸狸 【iOS开发技巧-国际化(Loc...

网友评论

      本文标题:iOS项目快速国际化

      本文链接:https://www.haomeiwen.com/subject/ulfajxtx.html