1

我有一个包含位置(商店名称。地址,城市,州,邮编)的 Excel 表,我想开发一个 iphone 应用程序来使用地址、城市、邮编或使用当前位置搜索这些位置。请告诉我如何实现这一目标。

谢谢

4

1 回答 1

2

I just had a similar issue recently. I saved my excel files to csv format, and then I downloaded the code described in this link:

http://blog.danilocampos.com/2009/12/04/convert-a-csv-into-a-plist-file/

which is for a mac app that converts csv files to plist files. I had to edit the

- (IBAction)executeConversion:(id)sender

method in AppController.m to get the plist in the format I wanted, but it was straightforward. It may not be the best solution, but it was the best I could find.

于 2012-09-25T16:52:37.673 回答