0

我在显示国际字符时遇到问题UIAlertView

我正在从此 URL 中检索 JSON 格式的字符串

返回的格式没问题,并且包含正确的字符。

当我尝试在我的应用程序中加载它时,UIAlertView我看到了这个:

在此处输入图像描述

显示西班牙文、克罗地亚文、中文等 Unicode 字符的正确方法是什么?

更改设置中的默认语言并没有解决问题。

4

1 回答 1

1

没有任何代码,很难指出哪里出错了。下面的代码有效,我只能假设您正在对编码数据进行特别有效的处理。

NSData *data = [NSURLConnection sendSynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://kancelarijahatipovic.com/translate.php?from=eng&dest=hr&phrase=iron"]] returningResponse:nil error:nil];    
NSString *string = [NSString stringWithUTF8String:[data bytes]];
SBJsonParser *parser = [[SBJsonParser alloc] init];
id returnVal = [parser objectWithString:string];  
if( [returnVal isKindOfClass:[NSDictionary class]]) {  
    //build string  
    NSMutableString *alertString = [NSMutableString string];    
    if( [returnVal objectForKey:@"tuc"] != nil ) {  
        NSArray *tucs = [returnVal objectForKey:@"tuc"];  

        for( id tucObject in tucs ) {  
            if( [tucObject isKindOfClass:[NSDictionary class]] && [tucObject objectForKey:@"phrase"] != nil ) {  
                id phraseObject = [tucObject objectForKey:@"phrase"];  

                if( [phraseObject isKindOfClass:[NSDictionary class]] && [phraseObject objectForKey:@"text"] != nil )  {  
                    [alertString appendFormat:@"%@\n", [phraseObject objectForKey:@"text"]];  
                }  
            }  
        }  
    }  

    if( alertString.length > 0 ) {  
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"example" message:alertString delegate:nil cancelButtonTitle:@"okay" otherButtonTitles: nil];  
        [alertView show];  
    }  
}  

编辑: SBJsonParserobjectWithData:提供与上述相同的结果。

于 2013-04-12T13:12:52.637 回答