XML ファイルに Big-5 の漢字が含まれています。以下のコードに基づいて UTF-8 に変換する方法を教えてください。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSString *xmlFilepath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Hostels.xml"];
NSData *xml = [[NSData alloc] initWithContentsOfFile:xmlFilepath];
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData:xml];
Parser *theParser = [[Parser alloc] initParser];
[xmlParser setDelegate:theParser];
.......