GSWebFAQ

From GNUstepWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Problems with encoding

WO 4 uses 8-bit ISO Latin 1 encoding and WO 5 uses an 8-bit representation of Unicode characters (NSUTF8StringEncoding).

Our code uses

 [NSString  defaultCStringEncoding]; 

as default. One way of changing the encoding in your application is to call

[WOMessage setDefaultEncoding: NSUTF8StringEncoding];

before you begin generating pages.