Re: Templates for program output

2012-11-10 Thread Martin Hewitson
Ah, that set me off on the right track. I then also came across MGTemplateEngine, which seems to be just what I want (I need loops and logic). Thanks! Martin On 10, Nov, 2012, at 09:02 PM, Ben Gollmer wrote: > On Nov 10, 2012, at 1:50 AM, Martin Hewitson > wrote: > >> Dear list, >> >> I h

Re: FileWrapper & iCloud

2012-11-10 Thread Gordon Apple
I don¹t know about iCloud, but I finally got file wrappers working for my NSPersistentDocument subclass. It wasn¹t easy. I use a separate folder for stored files, sibling to my coreData storage, in the same package. I based it losely on the NSPersistentDocumentFileWrappers sample, then let my ³F

Re: Templates for program output

2012-11-10 Thread Ben Gollmer
On Nov 10, 2012, at 1:50 AM, Martin Hewitson wrote: > Dear list, > > I have an app which is used for compiling agendas. The output is an html page > with the agenda formatted in tables, etc. Currently I just build an NSString > containing all the html. Clearly this is limited. > > I'd like to

Re: FileWrapper & iCloud

2012-11-10 Thread Sean McBride
On Sat, 10 Nov 2012 18:09:58 +, Luke Hiesterman said: >File wrappers don't make it inherently easier or harder to deal with >iCloud. File packages (which you would use file wrappers to represent) >can be elegant means of wrapping up document data because it allows for >easy separation of disti

Re: FileWrapper & iCloud

2012-11-10 Thread Luke Hiesterman
File wrappers don't make it inherently easier or harder to deal with iCloud. File packages (which you would use file wrappers to represent) can be elegant means of wrapping up document data because it allows for easy separation of distinct components, and are usually recommended if they at all m

FileWrapper & iCloud

2012-11-10 Thread Brad Stone
Does fileWrapper functionality make it easier or harder or is completely irrelevant for iCloud document functionality? My app used to need the fileWrapper functionality and it's still in there but I don't need it anymore and I want to remove it all. Would it help me keep it? Thanks __