我正在尝试在uiwebview
. 现在此页面基于json
文件对内容进行分级。
此文件还通过对 Web 服务的 ext 评级填充。我正在做的是使用 Web 服务填充此 json 文件并将此内容呈现在显示的页面上web view
。
但问题是当我在模拟器上执行它时它工作正常。但它不适用于我的设备。
这是代码。我将突出显示相关行。
NSURL *jsonURL=[NSURL URLWithString:@"http://r099:8080/WebServiceforiPad/rest/ipad/content/login/"];
// NSLog(@"%@",jsonSourcePathName);
NSString *jsonfileString=[NSString stringWithContentsOfURL:jsonURL encoding:NSASCIIStringEncoding error:nil];
NSLog(@"%@",jsonfileString);
NSString *documentDirectory=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *jsonFilePath=[documentDirectory stringByAppendingPathComponent:@"b2b_capability_eris.json"];
NSLog(@"###########%@",documentDirectory);
[jsonfileString writeToFile:jsonFilePath atomically:YES encoding:NSStringEncodingConversionAllowLossy error:nil];