UIWebView,NSBundle,NSURL conversion to cocos2d-x(C++)

hi
i want to load html file. I have done coding in objective C but its getting difficult to convert in C++.
Please help.
UIWebView myWebView;
NSString
htmlPath = [[NSBundle mainBundle] pathForResource:"Help" ofType:“html”];
NSURL bundleUrl = bundlePath]];
NSError
error = nil;
CCString *html = [[CCString alloc] initWithContentsOfFile:htmlPath encoding:NSUTF8StringEncoding error:&error];
myWebView->loadHTMLString(html,bundleUrl);