码迷,mamicode.com
首页 > 其他好文 > 详细

本地化 string

时间:2015-04-07 13:28:36      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

static const char* getLocalizedText(const char* pKey, const char* pTableName = NULL);

 

const char* SystemHelper::getLocalizedText(const char *pKey, const char* pTableName)

{

    NSString* key = [NSString stringWithUTF8String:pKey];

    

    NSString* table = pTableName ? [NSString stringWithUTF8String:pTableName] : nil;

    

//    NSString* pString = [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:nil];

    NSString* result = NSLocalizedStringFromTable (key, table, nil);

                          

    return result ? [result UTF8String] : NULL;

    

//    return [pString UTF8String];

}

本地化 string

标签:

原文地址:http://www.cnblogs.com/niwococo/p/4397955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!