Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
5k views

NSViewController and multiple subviews from a Nib

I'm having a difficult time wrapping my head around loading views with Interface Builder and NSViewController. My goal is to have a view which meets the following description: Top bar at the top ...
9
votes
2answers
1k views

Cocoa application architecture on Mac OS X

I'm getting back in to Cocoa development on the Mac after a long stint doing iPhone work. My previous experience with Cocoa on the Mac has just been dinky little tools. I'm looking to build something ...
4
votes
1answer
633 views

Create a custom view using a nib and use it in a window

I have been struggling quite a bit with this problem and I can't seem to figure it out by myself. This is the situation: I want to have a custom Nib-based view, with its own ViewController. I then ...
3
votes
3answers
1k views

How do I switch out Views in a Cocoa application?

So I'm beginning to learn how to use Cocoa. I think I've pretty much got it but I'm hung up on creating and switching views. I'm rewriting a game I made a little bit ago for practice. All I want is ...
2
votes
2answers
122 views

NSViewController & Interface Builder

I have a simple project which consists of a simple window with one view coming from a NSViewController (see http://i.stack.imgur.com/UAn6L.png ) The view is managed (+ linked, see screenshot) to my ...
2
votes
2answers
320 views

Any solution for Cocoa push/pop of view controllers?

Let me get this out of the way: I'm used to to UIKit, where you can push/pop view controllers to your hearts content. That just doesn't work on the Mac. With TwUI, this works extremely well on the ...
2
votes
1answer
655 views

QuickLook consumer as a delegate from an NSViewController

I am having some problems implementing QuickLook functionality from a table in an NSView. The limited documentation on QuickLook really doesn't help at all. After reading through the Apple Docs ...
2
votes
1answer
697 views

How to display a subview loaded from a separate NIB file

I'm developing a Cocoa desktop application that uses a source list in the style of iTunes: different elements in the source list cause the main content area to display different views. The content ...
2
votes
2answers
712 views

Binding selection across multiple view controllers in a single window interface

I am having an issue wrapping my head around how to hook up a few NSArrayControllers across two view controllers. I want to sync the selection in the source list table view to update the values in ...
2
votes
2answers
463 views

NSView inside self window

I have basic *.xib file, which have NSView. How can I use another nib files for this Custom View? What is NSViewController and how should I use it?
2
votes
2answers
1k views

Handling messages to the first responder in a view controller

I must be missing something simple, but I can't see it. First, the setup: DATreeView, a subclass of NSView DATreeViewController, a subclass of NSViewController MainMenu.xib has an instance of ...
1
vote
1answer
16 views

NSMutableArray not being filled before it needs to be loaded

I'm attempting to set up a simple Mac-based 2D tiling engine, using a 2D NSMutableArray for mapping purposes. I am using a subclass of NSViewController with a reference to the map object (which ...
1
vote
1answer
35 views

Cocoa: setters in an NSViewController view

I'm using an NSViewController class with a single view in it to display a progress indicator bar and some text fields. I'm trying to use progressIndicator setMaxValue:and theTextField setStringValue: ...
1
vote
1answer
64 views

Accessing parent view when adding subview

I have a ViewController that has 2 NSViews in it of different sizes. I'm wanting to add the view of a custom ViewController as a subView to both of these NSViews and have it dynamically size to fill ...
1
vote
1answer
101 views

How to call registerForDraggedTypes in NSViewController?

I have a MainViewController with a splitview in it. Next I have two viewcontroller to control each of the views in the splitview. I want to be able to drag and drop a file in one of those views. But ...
1
vote
1answer
107 views

How to bind nib custom view to a NSVIew subclass

I have a simple requirement. On Click of a + button, I am trying to add a custom view to a SplitView. I have created a class MyCustomView which is a subclass of NSView In the applications nib file, ...
1
vote
2answers
141 views

Add lots of views to NSScrollView

I'm trying to add one subview (view from an NSViewController) for every element in a dictionary to a NSScrollView to get kind of a tableview, but with much more flexibility over the cells. Is it ...
1
vote
1answer
79 views

Sharing an object for binding (specifically an NSDocument) between various views / nibs

I'm writing an application for OSX (Lion) using Xcode 4. Hitting a bit of a wall with this one and the internet has thus-far proved not particularly helpful. I have a document defined, as well as ...
1
vote
1answer
56 views

Have a control selected in a loaded view

I have a question about using NSViewController and switching between views. I have a Cocoa application where I have a window. The idea with the window is that it will display a number of views one by ...
1
vote
2answers
183 views

Switching between NSViewControllers

I'm developing a Mac Application. The application has a common source view on the left and a detail view on the right which is the main part of the whole window. It's like a Master-Detail ...
1
vote
1answer
310 views

NSViewController or NSWindowController to manage nib

As far as good practices and resource usages (memory, etc.), Which is preferable method to use NSViewController or NSWindowController if either method satisfied what I try to do. Opening another nib ...
1
vote
3answers
334 views

Using the same NIB with multiple View Controllers

Basically I want to use a nib file and view controller as a template for a view that I plan to create a number of times. This nib will have a couple of labels and custom views. The idea is that I will ...
1
vote
1answer
1k views

NSWindowController and NSViewController

Probably a pretty simple question, but I can't get my head around it. I would like to create some sort of wizard: An NSWindow appears as a sheet from another NSWindow and should show three different ...
1
vote
1answer
326 views

Mac OS X: master-detail interface and Cocoa Bindings

I have a master-detail interface. In the "master part" I show a list of people, in the "detail part" I show the detail of the selected person, including a list of things that the person has: master ...
1
vote
1answer
286 views

NSView high-level overview?

I am trying to create a custom view and load it into a window. In the end, I know there will be a few steps to follow, reflecting the key relationships that I am missing. I am hoping someone can ...
1
vote
3answers
778 views

How to have a NSViewController who's view's content depends on the way it's initialized?

This is actually a two part question, hope my explanation is clear: I have an NSViewController which can be configured to show a different custom view on part of its view. For example, its view can ...
1
vote
1answer
395 views

Add NSView from different nib

How can I add a subview when the new view is in a different xib file? The class for the different nib is an NSViewController and I'm using self = [super initWithNibName:@"NewView" bundle:nil]; to ...
1
vote
3answers
307 views

Is it possible to get an NSView to pass rightMouseDown: to the next responder without subclassing?

I have a view which contains a few subviews: mainView subViewA subViewB SubViewC mainView is an NSView constructed from a nib and is controlled with an NSViewController subclass. The ...
0
votes
1answer
14 views

NSToolbar and view controller hierarchy

I have the following class hierarchy: NSViewController MyGeneralViewController ViewControllerA ViewControllerB MyGeneralViewController holds some common code used by both ViewControllerA ...
0
votes
1answer
68 views

Load nib from other nibs (i.e. Interface Builder) in Cocoa

I have a view setup in Interface Builder which contains a viewController that loads another Nib file. However, for some reason the objects contained in the nib file being loaded never gets called ...
0
votes
1answer
57 views

Proper usage of NSViewController representedObject

I have a NSViewController managing a NSTableView and noticed that NSViewController has a representedObject property, however it isn't an IBOutlet and I'm not able to bound the dataSource of ...
0
votes
1answer
34 views

Cocoa: loading a view from within the NSViewController class

As I understand it, the view of a NSViewController class must be loaded before anything can be changed in the view through setters and getters. The problem is, the view in the controller is supposed ...
0
votes
3answers
72 views

Instance variables lose value after initWithNib and before IBAction in NSViewController

I have a very basic initialization problem with an OS X app I am writing. I am initializing instance variables in initWithNibName in my NSViewController. However, these variables lose their value ...
0
votes
2answers
63 views

How to handle keyboard events in subclass of NSViewController?

I am creating one cocoa application having wizard like structure. All dialogs are subclass of NSViewController. Currently I am not able get keyboard events such as keyDown and keyUp.. Please help me ...
0
votes
1answer
57 views

If an NSManagedObject subclassed object is an NSViewController's representedObject is it a fault?

in an NSViewController subclass this BOOL returns "fault is (null)" in the console: Submission *sub = [self representedObject]; BOOL fault = [sub isFault]; NSLog(@"fault is : %@", fault); i do have ...
0
votes
2answers
125 views

Split NSTabView across multiple NSViewControllers and XIBs

I'm just getting into desktop Cocoa development (I have experience with iOS development). If this question seems basic, forgive me. That being said, I'm dealing with a large program with lots of ...
0
votes
1answer
199 views

first mac app - push viewcontroller

I have a question, I do some iphone application and now I want to do a little mac application. From a clean application I add a button on MainMenu xib, than I add a NSViewController to MainMenu (from ...
0
votes
1answer
462 views

Swapping views - NSWindowController and NSViewController(s)

I'm very new in Mac OS programming. At the moment I'm trying to create simple measurement application which will have one window with the toolbar at the top and the appropriate view in the bottom. ...
0
votes
1answer
97 views

Using toolbar with several NSViewControllers

I've a single window Document-based application that loads several NSViewControllers that serve as the main view. Each view controller is a self-contained class that deals with certain business needs ...
0
votes
1answer
467 views

NSWindowController object linkage in Interface builder

I created a NSWindow xib file that I want to open on click of a button in another window. Now, to control the behavior of the NSWindow, I dragged an object from Library in xib and changed it to ...
0
votes
1answer
231 views

keyup keydown methods NSViewController

I made an instance of NSViewController and added it as a subview to the main window's content view. I want to be able to capture keyboard events, but I have no idea how to implement it.After some ...
0
votes
1answer
149 views

Subviews disappearing on completion of awakeFromNib

I have a view with a NSBox subview (with CA enabled for shadow) and I'm trying to add my NSView subclass to the box dynamically during awakeFromNib. There will be a varying number of these NSViews ...
0
votes
1answer
231 views

Redraw NSTableView with new data from file when NSViewController re-loaded?

I have a Mac OS X Document based app that has multiple NSViewControllers that I switch between and each view displays data from plist files in NSTableViews based on the user selections in the previous ...
0
votes
1answer
329 views

How to make child controls of view will get focus on Tab and Shift+Tab in NSViewController

I have to upgrade one existing application and neeed to split its existing UI into separate NIBs. I have planning to start with creating separate NIBs and NSViewController for all my splitted UIs. Now ...
0
votes
1answer
354 views

Cocoa NSPopupButton Problem

In my Cocoa Application, In One view i added a NSPopupButton via Interface builder and linked that accordingly with the source file, Now in the Code, i am creating Menu dynamically and adding menu ...
0
votes
1answer
624 views

Loading NSView from NIB won't work

I have this code to load an NSView from a NIB and add it to another NSView: // INIT - (void)awakeFromNib { // Load nib DNListViewController *listViewController = [[DNListViewController alloc] ...
0
votes
1answer
256 views

Resizing Nested NSViews

In order to categorize a wide variety of unique views, I have an elaborate setup: main categories are selected via a toolbar, and then specific panes are selected in a category's NSScrollView. This ...
0
votes
1answer
201 views

NSView not removing from superview

I have an NSView (we'll call it view1) that is from an NSViewController. The Super view (which we'll call view2) is located inside an NSWindowController. The problem is, I can add view1 to view2, ...
0
votes
1answer
181 views

Why “add subview” not work?

I try add subview but not work. My code is: HomeViewController* homeViewController = [[HomeViewController alloc] initWithNibName:@"HomeView" bundle:nil]; NSViewController *viewController = ...
0
votes
1answer
197 views

Passing CoreData content to a NSViewController

I've started to move to using NSViewControllers and I can't for the life of me figure out how to get content from a CoreData entity to a TableView (for example) through a NSViewController?

1 2