sdl2_frt/src/video/uikit
Sam Lantinga cef198c9cb Fixed bug 5524 - Pass NSString to NSLog()
Hiroyuki Iwatsuki

If you pass the C string directly to NSLog(), it will be garbled with Japanese and probably other language strings, or no log will be output at all.

NSLog("Hello, World!"); // => "Hello, World!"
NSLog("こんにちは、世界!"); // => No output...

Therefore, you need to convert the string to an NSString before passing it to NSLog().

NSString *str = [NSString stringWithUTF8String:"こんにちは、世界!"];
NSLog(@"%@", str); // => "こんにちは、世界!"

Thank you.
2021-02-10 10:22:18 -05:00
..
keyinfotable.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitappdelegate.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitappdelegate.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitclipboard.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitclipboard.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitevents.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitevents.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmessagebox.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmessagebox.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmetalview.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmetalview.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmodes.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitmodes.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitopengles.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitopengles.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitopenglview.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitopenglview.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitvideo.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitvideo.m Fixed bug 5524 - Pass NSString to NSLog() 2021-02-10 10:22:18 -05:00
SDL_uikitview.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitview.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitviewcontroller.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitviewcontroller.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitvulkan.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitvulkan.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitwindow.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_uikitwindow.m Updated copyright for 2021 2021-01-02 10:25:38 -08:00