AppSales-Mobile icon indicating copy to clipboard operation
AppSales-Mobile copied to clipboard

Chinese App name not support when importing...(with solution)

Open pacess opened this issue 14 years ago • 1 comments

AppSales Mobile is a GREAT app! Unfortunately all Chinese App name will become ALIEN name when importing CSV. I fixed that problem in [ImportExportViewController unzipAndImportFile] by replace the following code:

NSString *fileContents = [[[NSString alloc] initWithContentsOfFile:reportPath] autorelease];

with code:

NSString *fileContents = [NSString stringWithContentsOfFile:reportPath encoding:NSUTF8StringEncoding error:nil];

pacess avatar Feb 17 '11 03:02 pacess

Could you please check if this is still the case with the latest version?

omz avatar Aug 07 '11 00:08 omz