Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
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 ...
3
votes
1answer
64 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: ...
3
votes
1answer
275 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 ...
3
votes
1answer
226 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?
3
votes
1answer
151 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 ...
2
votes
1answer
46 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 ...
2
votes
2answers
548 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 ...
2
votes
1answer
720 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 ...
2
votes
2answers
1k 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)? ...
2
votes
7answers
4k views

Wait for [NSAlert beginSheetModalForWindow:…];

When I display an NSAlert like this, I get the response straight away: int response; NSAlert *alert = [NSAlert alertWithMessageText:... ...]; response = [alert runModal]; The problem is that this ...
1
vote
0answers
129 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
204 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 ...
1
vote
1answer
253 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 ...
1
vote
2answers
422 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
937 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
0answers
14 views

How to swap between Documents from a Panel in a Document-Based Cocoa App?

I am a new developer in Objective-C and Cocoa but I tried to create a simple Text Editor and I made it in a great percentage. However, I wanted to add a nice feature: I want to show a panel that ...
0
votes
0answers
64 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
23 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 { ...
0
votes
0answers
61 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.
0
votes
3answers
131 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 ...
0
votes
1answer
60 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
91 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
41 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
211 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
74 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
261 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. ...
0
votes
2answers
172 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 ...
0
votes
1answer
208 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 ...
0
votes
2answers
230 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, ...
0
votes
2answers
223 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?
0
votes
3answers
348 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 ...
0
votes
1answer
438 views

Where do you put cleanup code for NSDocument sub-classes?

I have a document-based application and I have sub-classed NSDocument and provided the required methods, but my document needs some extensive clean-up (needs to run external tasks etc). Where is the ...