How to create and save a .rtf, .doc, .docx in Objective-C for iOS -
i looking create , save either rtf, doc or docx file on ipad (ios).
the scenario we'd assist user in creating content on ipad , allow them email editable document cross-platform (os x, win).
i open other solutions besides rtf, doc or docx file format.
thanks,
james
rtf going easiest, because it's plain text format. it's kind of html, without closing tags. here class writing rtf, requires lot of dependencies elsewhere in framework.
docx rather difficult. it's zip file, containing few xml files. can examine format changing .docx extension .zip , unzipping it. though xml easy write format, way text attributes organized still rather complicated. also, recall has zipped in specific way read properly.
as doc, hard because it's such complex format. open source projects, abiword or word2x. careful using code because licenses may not agree app store rules.
objective-c ios rtf docx doc
No comments:
Post a Comment