NSView Implements basic drawing, event handling and printing behaviors for applications. Usually application code define subclasses of NSView to provide richer implementations. Belongs to the Foundation framework for Cocoa and Cocoa Touch.
0
votes
0answers
64 views
Cocoa - Rotated NSView with shadow
I have an NSView filled with an image, and I need to cast the shadow behind its bounds.
In its drawRect method, I have tried to lock the superview focus and draw my NSView in its superview. It works, ...
0
votes
1answer
107 views
Removing view from subview does not call willRemoveSubview
I have a managing view controller that switches in one of a set of previously allocated sub view controllers when the user chooses a menu item.
When I switch in a view controller I hook up the view ...
0
votes
0answers
114 views
Drawing NSView's subviews manually
I'm writing a custom NSView that needs to animate its subviews by applying NSAffineTransformation before drawing them.
I am looking for a method that draws the view's subviews so I can override it
in ...
1
vote
1answer
69 views
NSView - under what conditions may the bounds and frame *size* be inequal?
I know that frame is a view's frame relative to it's parent, and bounds is the view's internal bounds (with origin always [0, 0] except in the case of scroll views?).
However, I'm unclear under what ...
2
votes
1answer
176 views
NSView image corruption when dragging from scaled view
I have a custom subclass of NSView that implements drag/drop for copying the image in the view to another application. The relevant code in my class looks like this:
#pragma mark -
#pragma mark ...
0
votes
1answer
76 views
Capturing an offline NSView to an NSImage
I'm trying to make a custom animation for replacing an NSView with another.
For that reason I need to get an image of the NSView before it appears on the screen.
The view may contain layers and ...
0
votes
0answers
49 views
NSSplitView toggling the visibility of a view
I'm trying to use a button to toggle the visibility of a view (and the splitter divider).
Here is the code that I am attempting to use:
- (BOOL)splitView:(NSSplitView *)splitView ...
1
vote
1answer
65 views
NSView subclass with IBOutlets and IBActions
I have an NSView subclass that is used for displaying a custom object. The drawing logic is all in methods on the subclass. There is no view controller associated with this view.
I have added a ...
1
vote
1answer
123 views
NSView autoresize to fit the contentview
CustomView *customView = [[CustomView alloc] init];
[self.window.contentView addSubview:customView];
How can i make customView.frame.size.height always equals to contentView.frame.size.height when ...
1
vote
0answers
62 views
NSMenu cancelTracking sometimes doesn't cancel tracking
I have a QT app, and I'm using native menus on OSX. I have custom-drawn menu items, which I created by attaching my own NSView-derived class to the NSMenuItems that I want to draw specially. This ...
0
votes
0answers
29 views
How to draw a square wave in a NSView
I want to draw square wave in a NSView. It should be possible to change the pulse width and height via a NSSlider. I know that I need to use the drawRect method, but I have no idea how to use it.
0
votes
0answers
175 views
NSView with gradient background AND shadow
I want my NSView to have both gradient background and shadow, so I subclassed NSView and overrode the - (void)awakeFromNib method like this:
[self setWantsLayer:YES]; // view's backing store is using ...
0
votes
2answers
149 views
Programatically created NSButtons won't press
My programmatically created buttons essentially aren't being pushed when I click them. Any idea why? Nothing happens, the action doesn't fire, the image doesn't change to the alternate image, etc.
...
2
votes
0answers
108 views
How to display an image on the NSWindow title bar that's half outside
I have a custom NSWindow subclass - INAppStoreWindow (github) with a custom title bar view - and I'd like to do something like this image:
As you can see the ribbon is not totally outside the title ...
0
votes
1answer
329 views
Make NSView with fixed width and variable height that fits contents
I want to create a view with fixed width, but variable height. It means that view should automatically be resized according to its contents height, but, at the same time, it should keep the same ...
0
votes
0answers
114 views
setNeedsDisplay not causing refresh drawRect
my project is some kind of a timing application for Mac OS X and I want to cause drawRect in TimeCircle to refresh myView. I´m aware that I asked a similar question before. But my problem is not ...
1
vote
1answer
119 views
Objective-C: Refactoring code - how do I get a pointer to a view instance?
I am not very experienced with OOP so I wanted to share what I am currently doing and ask for some advice about how I should go about a couple of things.
I am currently working on a simple game that ...
0
votes
0answers
118 views
How to send messages correctly to another Class Objective-C
My project is some kind of a timing application for Mac OS X and it looks like I have problems to understand how to make things work together :)
What I did so far:
1. An NSObject Class ...
0
votes
0answers
47 views
How drawRect is getting called in NSView, i have ten subViews then it will call Ten Time?
can any one please tell , call hierarchy in NSView.
How drawRect is getting called in NSView, i have ten subViews then it will call Ten Time?
0
votes
2answers
69 views
Wrong value for NSView _frame Objective-C
I want to draw a circle 160x160 in the upper right corner of a suclassed NSView named SettingsViewer. I must admit that I´m pretty new in this drawing business ;( Although I´ve done some drawing ...
4
votes
4answers
377 views
In OSX 10.8 how do I constrain a subview to be the same size as its parent view
I have the default NSWindow created in a new application which has a single NSView. I then create a new NSViewController which has it's own XIB and a view. In the app delegate I do the obvious
...
0
votes
1answer
128 views
Drag NSView anywhere on screen (no window)
I want to drag out a copy of the menu bar icon anywhere on the screen. I NSStatusItem uses a custom view and I've been able to have it display an icon in the menu bar. My application doesn't use an ...
0
votes
1answer
51 views
Pathbar Control with Cocoa
I have coded a pathbar control a while ago for my app Significator for iTunes.
Btw. no advertisement, only for testing purposes ;)
You can download it for free to see what I'm talking about.
The ...
1
vote
0answers
166 views
Objective C - XIB load in NSView
I'm new to Objective C coding and the MVC concept gives me some pain. My goal is to develop a Mac Application. I was able to create a .xib for the main window. It starts well.
My main NSWindow has its ...
0
votes
2answers
547 views
Cocoa NSView in NSTableView Cell
I'm new to cocoa and I'm getting frustrated, I've spent almost half the day trying to find out how to add an NSView to a NSTableView cell, but I haven't found a nice guide that can help me do what I ...
0
votes
1answer
27 views
Is there a method to know when a tooltip will appear on a NSImageView?
I'd like to know if there's a method that get's called before a tooltip is displayed. I can't find it anywhere.
1
vote
0answers
84 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
1answer
145 views
NSView.animator isAnimating raises error
I have some NSView subclass that I'm animating (changing frame and alpha value). Sometimes I would need to stop the animation, however I'm keep getting error
Here is a code:
[NSAnimationContext ...
1
vote
2answers
265 views
How to change the background color of an NSPopupButton?
I am trying to tackle a problem which sounds pretty simple: changing the background color of an NSPopupButton.
Interface Builder only allows changing the style to a pre-defined one and doesn't allow ...
2
votes
1answer
382 views
Setting background color in drawRect of NSSearchField subclass
I have a custom subclass of NSSearchField that I would like to set the background color of.
@interface CustomNSSearchField : NSSearchField
@end
So far, I have tried:
Attempt #1
@implementation ...
0
votes
1answer
88 views
NSView Autosize (Vertically)
Is it possible to have an NSView autosize (vertically) to fit its contents? The contents are just two NSTextFields, one (on top of the view) that's always the same height and the other (near the ...
0
votes
0answers
38 views
Overlapping custom NSViews
I have a number of NSView subclasses which implement their own transparent render modes. They are receiving input perfectly depending upon their depth in the interface builder, but they render out of ...
0
votes
0answers
16 views
Autoresizing adjacent views
I have two views in a cocoa application , A and B :
|----------------|
|-------A-------|
|----------------|
|----------------|
|-------B-------|
|----------------|
When the window ...
2
votes
1answer
67 views
How to display images as well as OS X Preview?
I am trying to display myPhoto.JPG in a custom view. I'm zooming by adjusting myBox in the following:
[myImage drawInRect:myBox fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
...
0
votes
2answers
149 views
OSX: Programmatically added subviews not responding to mouse down events
I have 3 subclasses: a Block class, a Row class and a Table class. All are subclasses of NSView. I have a Table added with IB which programmatically displays 8 rows, each of which displays 8 blocks. I ...
0
votes
1answer
85 views
Change NSView hierarchy inside a contentView
I have 4 NSViews (A,B,C,D) inside a NSWindow contentView, one over another (like a stack of NSViews). I added the views using IB and connected them with a File Owner. Every view has a ...
6
votes
1answer
182 views
Resizing an NSView mid-animation
I have a normal NSView that is resizable by dragging the window edges.
If the view is resized during an [NSView animator] animation, it continues to animate to the final size of the original ...
0
votes
1answer
194 views
Autolayout constraints do no work for NSView composition with drawRect:
I am trying to apply Autolayout constraints to a custom button which inherits from NSView. The button is rather complex and can be used as radio button for example. The user interface is composed in ...
0
votes
1answer
244 views
cocoa - draw image in NSView
I'm having difficulties understanding why the below code doesn't work, what I wont to achieve is a image being displayed in the top left corner of an NSView, but nothing is showing...
NSImage *map0 = ...
0
votes
0answers
95 views
Observing changes in subviews' fittingSize
I'm writing a custom NSView that has an intrinsicContentSize that
depends on the view subtree constraints (specifically on the subviews fittingSize property).
The fittingSize property seems to be ...
0
votes
1answer
121 views
How to display multiple images in Cocoa for OSX?
What I'm trying to achieve sounds pretty simple: regular simple window with a text field, view ,and a button.
In the field I'm placing the number (32 for example) and after I hit the button my view ...
2
votes
0answers
100 views
mouseDragged not called outside NSView's frame
I'm struggling to understand why mouseDragged is getting called for one of my NSView subclasses but not for the other when the mouse is positioned outside the view.
Subclass 1 is programatically ...
1
vote
2answers
143 views
Position View within Container programmatically
OK, so this is my situation :
I've got a View (an NSBox actually) with variable bounds (I'm changing them programmatically)
Within the NSBox we've got another view (an NSTextField).
What I want to ...
0
votes
1answer
210 views
Draw NSView background partially, with a gradient
I have a NSView, subclassed, with custom background drawing, filling it with a gradient.
In IB, I've put a checkbox on it, somewhere in the middle.
This is the drawRect method.
-(void) ...
0
votes
0answers
103 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
2answers
250 views
Animating a NSStatusItem
I have a custom view in an NSStatusItem object.
This view displays icons. It's also able to show a progress, but you have to call [self.statusitemview setProgressValue:theValue];
I have a set of ...
1
vote
1answer
159 views
Actual size of NSView Self
I just started a brandnew project GrafLaboratory to do some experimenting on drawing in NSView.
I added a custom view to the main window and configured it to adopt it´s size when the window changes ...
0
votes
0answers
61 views
Find location of NSWindow title without resorting to private APIs?
I want to know the location of the title bar text when creating a custom NSWindow titlebar background view, so I can position visual elements relative to the title.
I've achieved this, but I've had ...
0
votes
0answers
65 views
Void method not updating label - Cocoa
This is to show you that the outlet is connected
I have a outlet which is : IBOutlet NSTextField *coordinates
Here is the code in the ".m" file..
-(void)mouseDragged:(NSEvent *)theEvent {
...
1
vote
0answers
76 views
View-based NSOutlineView cellviews overlapping
Is there any way to overlap cellviews in NSOutlineView?
NSView have no clipsToBounds property. I tried switch on the wantsLayer property of the cell view and its superview - rowView, then set ...


