データベースから抽出した中国語の文字列を入れなければならないというラベルがありますが、何も出てきません。他のすべてが正しく機能しているのに、文字列がデータベースからプルされていないことに気づきました。私に何ができる?
char *subTitle= (char*)sqlite3_column_text(statement,13);
NSLog(@" The sutitle is %s", subTitle);
//The sutitle is
rowTable.sottotitolo = [[NSString alloc]initWithUTF8String: subTitle];
NSLog(@"The subtitle is %@", rowTable.sottotitolo);
//The subtitle is
西洋アルファベット以外の方法を使用していますか?
NSLog(@"The string in chinese is %@", self.chinaTable.subtitle);
//The string in chinese is
//is not printed to the screen,but the database is written correctly
self.labelTitle.text = self.chinaTable.subtitle;
//empty out
前もって感謝します