Tagged Questions
0
votes
1answer
26 views
Status bar using NSview
Iam starting off on my first project using cocoa and was hoping you could give me some advice. What I want to achieve is quite simple. All I want is a simple message box may be using NSView that will ...
0
votes
1answer
40 views
Loading of different views in a single custom view based on buttons in those Custom views
In my project I have only one window, in that window I have only one Custom view, nothing other than that. In that custom view I am loading one Default view, and in that default view I have one Button ...
0
votes
1answer
34 views
Switching of one view to another view in single customViews
I am having of one CustomView in one xib and two different views in two different xib's.
I want to display those two view one after the other in one single CustomeView.
I have an object of NSView ...
0
votes
0answers
43 views
NSView & NSViewController Swaps from Within NSView
I was wondering if anyone had an example as to how you could achieve a similar effect to what happens in OS-X contacts. i.e.
Open OSX Contacts
Click on a particular contact
On the right, click on ...
1
vote
1answer
129 views
Reusable NSView from .xib
In several parts of my application, I need a control where a user can enter a password. The password field is secure, however I want the user to have the ability to switch the field to plain text and ...
1
vote
1answer
38 views
Should the View or the Controller be responsible for drag processing?
As a rule, where does the primary responsibility for drag handling properly belong -- in the NSView or in the NSViewController.
The drag manipulation hooks are all contained in NSView, so it seems ...
0
votes
1answer
149 views
How to position NSPopover
I have an OSX application that uses NSViewController to swap in-out views in my NSView. One of the views is a NSOutlineView. I now want to have a NSPopover appear when the user double-clicks a row in ...
1
vote
2answers
43 views
How to call awakeFromnib again & again, i am using setNeedsDisplay ,it is not working
while loading view First time awakeFromNib is called, but i want to call awakeFromNib again through method.
i have tried [view setNeedsDisplay:YES];
but it is not calling awakeFromNib again
Can any ...
1
vote
0answers
82 views
Composing NSViews using Interface Builder only
I have some custom views that I want to reuse throughout my application.
I create a new Objective C class in XCode and set the type to 'NSViewController'. I check the box to create .xib file for the ...
0
votes
0answers
101 views
Control multiple Views from one NSViewController Mac OSX development
Im not sure this is possible but I would like to have a single NSViewController show multiple NSViews. I cant seem to get this working. I would like to do something like to remove the main ...
0
votes
1answer
211 views
NSViewController for each row in View-Based NSTableView?
Usual good practice in Cocoa dictates that each NSView should have its own NSViewController as its owner. Should this apply to each row of a View-Based NSTableView and, if so, what's a good strategy ...
3
votes
2answers
115 views
Getting a NSViewController's View if it is a custom class?
I use the following code to get my View out of my controller:
CollectionItemView *myView = [self view];
This works pretty well, but I get the warning Incompatible pointer types initializing ...
0
votes
1answer
178 views
NSViewController.view (Subviews) setTag
Each time I press a button, mainController is calling [self.view addSubview: createCustomView.view]. Everything works fine here. The problem is that I need to put a tag on each subview I create in ...
0
votes
0answers
42 views
encoding viewcontroller
I'm subclass of NSViewController, and want to save it to data;
the method under will cause error and log is:
-encodeObject:forKey: only defined for abstract class.
Define -[NSArchiver ...
0
votes
2answers
621 views
how can i get window's contentView to “hug” it's subViews
like this question, i have an NSView which is the contentView for an NSWindow and it contains several subviews stacked vertically one above the other. some of them are fixed size and some of them can ...
0
votes
2answers
343 views
adding subviews to an NSView to have a chess-like grid
I am trying to create a Cocoa UI that consists of two sets of squares (chess-like grids) that will assume different colours while an underlying algorithm is running. When the execution of the ...
0
votes
1answer
488 views
Adding Subviews to NSView show up, but can not be removed
In my application window I have two NSViews. On the left the NSView ("Menu") contains a few buttons. When one of the buttons is clicked it should change the contents of the right NSView ("Content").
...
3
votes
1answer
2k 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 ...
2
votes
1answer
787 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
427 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
1answer
118 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
350 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
3answers
644 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 ...
0
votes
1answer
255 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 ...
1
vote
1answer
420 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 ...
0
votes
1answer
1k 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
378 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 ...
1
vote
1answer
660 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 ...
2
votes
3answers
579 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 ...
2
votes
1answer
1k 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 ...
0
votes
1answer
235 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 = ...
2
votes
2answers
621 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?
1
vote
1answer
1k views
After loading nib with NSViewController… how do I access the NSButton in the nib?
I've subclassed NSViewController with IBOutlets hooked into an NSButton in a secondary nib.
I can instantiate the NSViewController and apply the view in an NSMenu -- it works great -- but how do I ...
2
votes
2answers
2k 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 ...


