The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
30 views

From Core Data to UIDocument

I need to move my storage method from core-data to a document-based app with UIDocument. Edited: I'm moving away from core-data because of the big amounts of images I have to sync to iCloud. And I ...
0
votes
0answers
32 views

Xcode: Document-based app not receiving delegate notifications

Not receieving < NSApplicationDelegate > notifications. I set my NSDocument subclass to receive them. Here's my Document subclass header : @interface InquisitorDocument : NSPersistentDocument ...
1
vote
1answer
35 views

Delay document closing

I have a document based application and when the application is closed, I need to load a url in a web browser. It's working fine, except that the NSDocument closes before this page can be loaded. I ...
1
vote
1answer
22 views

opening a document opens a old version of my app

I have a document based application. If i open a saved file via double click on the file then a old version of my program (that I removed from the system) is opened instaed of the newer one. The ...
1
vote
0answers
85 views

Open untitled file in Document-based app

I want my app to open new untitled document every time it starts. It worked in 10.6 but now I upgraded to 10.8 and when I close the window with cmd+w and then restart the application it wont open any ...
0
votes
0answers
68 views

Cocoa Multi window application save state

I am having a little trouble with Cocoa multi window application. I am not writing a data aware application, this is just a test. I have written a few full single window applications. I don't use ...
1
vote
1answer
231 views

Xcode with OpenGL: new windows do not automatically become active context

I have a strange problem when I create a Documents Based Xcode project with a NSOpenGLView. The application works fine with a single document, responding to mouse clicks. When you choose File/New to ...
0
votes
0answers
71 views

Can't add NSDocument type identifier

In my app I want to provide support of some source file types, e.g. PHP, HTML, JavaScript etc. When I added document type for JavaScript, I became get the error in log: -[NSDocumentController ...
0
votes
1answer
128 views

Check if NSDocument is new

How do you know if a NSDocument is new? I'm currently using fileURL != nil but I couldn't find any place in the documentation that confirms this. Also, fileURL returns nil in restored documents ...
5
votes
2answers
133 views

Prevent save prompt when closing NSWindow

I have a document-based Cocoa app that uses a secondary NSWindow for a preview mode (with shouldCloseDocument set to NO). If the document is dirty (edited without saving) and I close the secondary ...
0
votes
1answer
97 views

dataOfType not called in lion document based application

Almost same to this issue. I'm creating a new document based application for OS X Lion. This document says, I must override dataOfType:error: and readFromData:ofType:error: in a subclass of ...
0
votes
2answers
122 views

iOS 4 Document-Based Applications

I need to create an application capable to modify and manage files on IOS. With IOS 5 is "easy" to create a Document-Based Application, but I need to support IOS 4 too. Anyone knows if there is a ...
0
votes
0answers
43 views

Notifications in Document Based Application

I have an Document Based Application and I want to send a notification inside one document (e.g. process information). My problem is that all documents get these notifications. Is there any good ...
1
vote
1answer
188 views

Confused on Document Based iPhone App Guide

I'm writing one of my first iPhone apps - a simple way of remembering things about people. I'm following the iOS document called "Document-Based App Programming Guide for iOS" and I've gotten to the ...
0
votes
0answers
107 views

NSTableView in document based app empty

I'm working on an OSC document based app. I have a "static" NSTableView in a xib file associated to my document. The table view is bound with a NSObject class that is initialized when I create an ...
0
votes
1answer
1k views

Tutorial/example of a minimal document-based app

I'm trying to understand how the things in Cocoa works but I'm struggling with one thing. I saw http://cocoawithlove.com/2010/09/minimalist-cocoa-programming.html and ...
0
votes
1answer
948 views

Cocoa: Key down event on NSView not firing

I have made a custom NSView and have implemented the keyDown: method. However, when I press keys the method is never called. Do I have to register to receive those events? fyi, I am making a document ...
0
votes
1answer
58 views

Document-based-like application + updating fields/menus/etc when switching document?

I have an application with multiple documents opened at once (as different tabs), but not implemented the Cocoa way, with NSDocument etc So, let's say, that application is a text editor : e.g. an ...
0
votes
1answer
133 views

NSTextField won't accept input after displaying once

I am developing a document based cocoa app. The startup interface is modeled after GarageBand: A welcome screen is displayed, which shows one of two alternating views (switched through a segmented ...
0
votes
1answer
95 views

How does a document-based database and CouchDB in particular handle ID references?

I really like the document-based approach of storing data like blog posts as a whole document with all information needed saved inside of it. Therefore the author´s username is stored as plain text. ...
0
votes
1answer
106 views

Core Data document based multiple nib based on selection

I'm building a Core Data document based application. In the app there's a main view (NSTableView) and an inspector view. Both views are separate nib files. The content of the inspector view should ...
1
vote
1answer
334 views

NSWindowRestoration issue

I am having a difficult time implementing this new "feature" of Mac OS X 10.7. For the most part, my application works without my having to do anything. Files reopen on launch as expected. If the file ...
0
votes
1answer
71 views

NSDocument has ivar to NSArrayController

Is this ok, to load NSWindowController from NSDocument, and keep reference to NSArrayController? I need this instance of array controller to save data. - (void)makeWindowControllers { ...
3
votes
1answer
122 views

Is there a better way to access the Document from its subviews?

I have some classes located on my Document such as NSNotificationCenter and NSUndoManager that I need access to from my subviews. Right now I can access them by doing something like this: ...
6
votes
1answer
519 views

Lion Resume when Closing Docs without Quitting App

I'm dipping my feet into Cocoa for the first time. Here's a simple question. OS X Lion supports Resuming of window state when an app is terminated and relaunched. Okay, good and fine. But for ...
2
votes
1answer
81 views

In a document based cocoa app, who's in charge?

According to the Document-Based Applications Guide, there should be a DocumentController, a Document, and a WindowController. What I am having trouble with is learning to judge where a given ...
9
votes
1answer
767 views

Delete RavenDB collection

I need to delete a whole collection of documents in Raven DB. Deleting one by one (documents) is not a wise choice. Is there a way I can do this easily?
1
vote
2answers
234 views

Single Document Interface document based cocoa application

Is there a way to create Single Document Interface (SDI) document based cocoa application? I dont want user to open multiple documents at once.
1
vote
0answers
361 views

NSDocument window controller and outlet instantiation

I have what it seems to be a weird problem with an instance of a document window controller. I have a document-based application with a custom window controller inited from overridden ...
1
vote
1answer
300 views

MVC3 - How to modify action result to get multiple objects update

When I select a theater from a drop down and click on 'add a movie', this code is run. public ActionResult Create(TheaterViewModel input) { var theater = new TheaterViewModel ...
0
votes
3answers
300 views

MVC-Document DB : creating multiple entities inside one document

Newbie, working with MVC and Document database. I have a Movies class public class Movie { public string Id { get; set; } public string MovieName { get; set; } public DateTime ...
1
vote
1answer
181 views

Core Data document-based app: saves, but cannot load

So long story short, I'm working on a Cocoa CoreData Document-Based app (my first time working with Cocoa), I haven't written a single line of code, everything is done through bindings and the default ...
0
votes
1answer
212 views

Document-based application, or not?

I am building a beer recipe application in Cocoa. It's has one main window, with a couple of textfields, tableviews etc. I want to be able to Open and Save recipes in XML format. I found some examples ...
0
votes
1answer
125 views

Centering a document window

I am writing a core data, document based app. I am trying to center the document's window. I have tried calling the following code from the document's makeWindowControllers method, from the window ...
0
votes
2answers
406 views

Change Window in Cocoa Document-Based Application

I have one window in a Cocoa-Document based application. I want to make this application have no titlebar. I know how to do this in a regular Cocoa app because there is a window called "window" in ...
0
votes
1answer
160 views

Working with the frontmost window's controls in a document-based app?

I've scanned the documentation and googled fairly extensively and found nothing on this subject. What I'm needing to do is interact with a specific instance of one of my NSWindows - that is, one ...
0
votes
1answer
717 views

Changing NSMenuItem depending on user selection

I am working on a Cocoa document based application. I have a menu item in the file menu named "Export Things…". This menu item is connected to the first responder, and calls a selector in MyDocument. ...
2
votes
2answers
856 views

Core Data Document-Based Application with Global Persistent Store

I've got a document-based Core Data application which works as is. I would like to add support for a global persistent store to hold a library of items. I've read most of the relevant docs, and ...
1
vote
3answers
289 views

cocoa document based application with shared windows?

I'm developing a document based app. Each document has three windows (and hence three window controllers). I'd like to set it up so that two of the three windows are shared between different open ...
4
votes
1answer
1k views

Starting a Cocoa document-based application shows selection window first

This seems like it should be easy yet I must be missing something. I have a document-based application. I have also built a new XIB that has a NSTableView and three buttons on it that I intend to ...
20
votes
2answers
3k views

What are the best uses of document stores?

I have been hearing a lot about document oriented data stores like CouchDB. I understand the uses of BigTable like stores such as Cassandra. After reading this question, I was wondering what the ...
0
votes
1answer
370 views

Cocoa CoreData and non-Document-Based Application

i have a Problem wich drives me crazy... I want to "write" a Cocoa CoreData Application, write is not the exact term, because the Application should be created with Bindings. It was no Problem to ...
1
vote
1answer
357 views

Cocoa document-based app: Notification not always received by observer

I hope somebody can help with my notification problem. I have a notification which looks to be set up correctly but it isn’t delivered as expected. I am developing a document based app. The ...
3
votes
1answer
371 views

How can I prevent making new Untitled document when Mac OS X document based application start up?

I'm making a new Mac OS X application. (not an iPhone app) This is document-based application. It shows a new "Untitled" document instance automatically when it starts up. How can I block this ...
0
votes
2answers
332 views

Document Based Application, preinitialize window (enter serial, buy, trial)

I need to create several windows before NSDocument is loaded, or create a window that blocks NSDocument window and top menu. I tried several solutions - but they didn't work right. modal window, ...
1
vote
2answers
582 views

Is it better to use a relational database or document-based database for an app like Wufoo?

I'm working on an application that's similar to Wufoo in that it allows our users to create their own databases and collect/present records with auto generated forms and views. Since every user is ...
1
vote
2answers
2k views

Cocoa document-based application with multiple document types

I want to build a document-based app in Cocoa but so that it can create and handle different types of documents. Think Word, Excel, Powerpoint all in one application, only much simpler. But every ...
0
votes
2answers
401 views

Document-based app in one window

I need to develop a simple document-based application but using only one window, the documents should open in views separated by tabs. How can I achieve it?
4
votes
4answers
2k views

Multiple Documents in a Single Window in Cocoa

I want to write an application which may have multiple documents in a single window via a tabbed interface. Should I avoid the NSDocument architecture (the Cocoa Document-based Application template)? ...
1
vote
3answers
522 views

How do I create an import-only document type in Cocoa?

There's a file type my application import but not save. I've added an entry to the document types and set it to read-only, but that doesn't yield the import behaviour that I'm looking for. Instead, my ...

1 2