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.
What am I doing wrong? I have an awakeFromNib method in which I am calling a class that is a subview (GameMap). The class exists and I am able to log in the awakeFromNib method as well as log in Gam
I am creating a NSView subclass that has rounded corners. This view is meant to be a container and other subviews will be added to it. I am trying to get the rounded corners of the NSView to clip all
I have three NSViews stacked on each other, and I want to be able to programmatically resize the middle one to stretch it vertically, moving the bottom one down by the same amount that the middle one
I have a NSView and inside that, there is a Label : NSTextField Control, Inside NSView i have to show a context menu on the right click, its working fine except few below issue,
I have an NSView with multiple child controls in it. I know I can call [childControl setHidden:TRUE] but I was wondering if its possible to block the message \"drawRect:\" for the child controls.
I have an NSTableView that is开发者_JAVA技巧 displaying different views for each cell. How can I determine that my mouse is over a specific view? I want to be able to hide/show certain UI pieces depen
I have an NSView thats used as a status item and I need to run this on/in it: thingOne = NO; [self setNeedsDisplay:YES];
I can\'t make a key equivalent work on an NSButton that I have created programatically.Can anyone advise me of what I\'m doing wrong? The button works as intended when pressed, but the key equivalent
First of all I have to inform you that I am new to Objective-C and Cocoa. I have read some books about that and I am able to build quite simple programmes now.