0

I want to make an iPhone application which fetches XLS data from mail attachments and adds it into the iPhone AddressBook. I am new to the iPhone SDK. Can anyone help me?

Sixten Otto
  • 14,816
  • 3
  • 48
  • 60
priya
  • 3
  • 2

1 Answers1

1

You can view the contents of an Excel document with the UIWebView class. But there is no built-in functionality to parse an Excel document, to extract data from it. Consider using CSV or other text-based, non-proprietary formats, if you can.

Alex Reynolds
  • 95,983
  • 54
  • 240
  • 345