我想在iphone中开发一个用户可以打开xls文件的应用程序,可以对已存在的数据进行一些编辑,最后保存。
我怎么能这样做呢?
答案 0 :(得分:4)
是的,如果您想打开本地xls文件,Hardik非常简单。
将本地xls文件添加到项目中
在视图上拖放UIWebView控件。
连接文件所有者和UIWebView对象
添加:
的
- (void)viewDidLoad {
[super viewDidLoad];
//Get the path where your local xls file is located
NSString *FilePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"xls"];
//Now To use a local resource file in a web view you need to use NSURL fileURLWithPath:
NSURL *url=[NSURL fileURLWithPath:FilePath];
//URL Requst Object
NSURLRequest *requestObj=[NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[m_webView loadRequest:requestObj];
}
现在只是Build and Go
答案 1 :(得分:2)
您可以使用UIWebView
查看XLS文件,但无法对其进行编辑。 iPhone SDK中没有任何内置功能可以为您完成此操作。您可以尝试联系these folks,看看他们是否会将软件许可给您。