Hi Guys,
I am Having a problem here.I am downloading the excel sheet using Url and have to displaying it in the web view here my problem is the Excel sheet is not displaying. I written the code as:
NSString *str = @"";
str = [str stringByAppendingString:
@"http://databases.about.com/library/samples/address.xls"];
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:str]];
[webView loadData:data MIMEType:@"application/xls" textEncodingName:@"UTF-8"
baseURL:[NSURL URLWithString:@"http://google.com"]];
[contentView addSubview:webView];
Thank you, Monish.