Tagged Questions
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.
31
votes
2answers
824 views
Cocoa drawing on different screens loses performance
I have a document-based app, where each document has one window with an NSScrollView that does some (fairly continuous) drawing using only Cocoa.
To call the drawing, I am using a CVDisplayLink, ...
9
votes
3answers
9k views
Best way to change the background color for an NSView
I'm looking for the best way to change the background color of an NSView. I'd also like to be able to set the appropriate alpha mask for the NSView. Something like:
myView.backgroundColor = ...
9
votes
3answers
2k views
Selection Highlight in NSCollectionView
On some occasions my head just hurts from banging it against the Cocoa wall. Today is one of those days.
I have a working NSCollectionView with one minor, but critical, exception. Getting and ...
9
votes
4answers
3k views
Binding a custom NSView: Does it demand creating an IBPlugin?
I have created a subclass of NSView to draw an image as a pattern:
@interface CePatternView : NSView
{
NSImage* image;
id observableObjectForImage;
NSString* keyPathForImage;
}
@end
...
8
votes
2answers
1k views
Embed font in a mac bundle
I have a program I am writing. I want to use a fancy font. Can I just embed my font into my bundle and use it from there.
My code...
NSMutableAttributedString *recOf;
recOf = ...
7
votes
2answers
234 views
Bad text rendering with Core Animation
First of all, I know this topic has been brought up several times before but I'm posting this question because none of the "solutions" I've used in the past have worked in this specific case. I'm ...
6
votes
2answers
251 views
NSMenuItem's NSView not highlighting in submenu
I have an NSStatusItem that displays an NSMenu full of NSView subclasses. I override drawRect: in my NSView subclass to implement highlighting in the NSMenu and everything works fine in the root menu, ...
6
votes
2answers
1k views
Overlay NSView over NSScrollView
I have an NSScrollView that fills an entire window and displays a huge image. Now I would like to overlay a custom NSView over parts of the Scroll View (eg. top 20 Pixels height and window width) to ...
5
votes
2answers
88 views
How should I design displaying a dynamic map? (Coordinates + Lines)
So I want to have a view (NSView, NSOpenGLView, something CG related?) which basically displays a map. Such as:
http://dump.tanaris4.com/map.png
Obviously that looks horrible, but I did it using an ...
5
votes
2answers
1k views
Way to get beginGestureWithEvent/endGestureWithEvent if window isn't frontmost
Is there a way to get
- (void)beginGestureWithEvent:(NSEvent *)event
and
- (void)endGestureWithEvent:(NSEvent *)event
calls to a view even if the containing window is in the background? It ...
5
votes
2answers
2k views
Overlay NSScroller over content
Is there any way to overlay the NSScroller over the content of the scroll view (like in iOS)? I've already tried several approaches:
a) setting the frame of the scroll view content view (NSClipView) ...
5
votes
0answers
459 views
CAAnimationGroup with different interface elements
I want to crossfade two NSViews and resize their NSWindow. I know how to do them separately but so far not how to do it simultaneously. I think I need a CAAnimationGroup for it. But because I'm ...
4
votes
1answer
152 views
NSControl flickers on NSView attached to a NSView in full screen mode
The setup:
My application has background views that are set into full screen mode using enterFullScreenMode:withOptions:.
To these background views I move a content view as a subview using ...
4
votes
2answers
2k views
Repeating background image in an NSView
I am trying to draw a repeating background image in my NSView, I have this till now:
// INIT
- (id)initWithFrame:(NSRect)frame {
if (self = [super initWithFrame:frame]) {
self.backgroundImage = ...
4
votes
1answer
1k views
Center an NSView within an NSScrollView
How do I center an NSView within an NSScrollView like the way "Preview" does?
4
votes
3answers
2k views
Why are subviews of an NSView not sent a release message when a Cocoa application terminates?
The short version:
Why are the subviews of NSView objects not sent a release message when a Cocoa application terminates?
Is there a way to override this behaviour?
An example:
The MyView class ...
4
votes
6answers
3k views
iPhone Memory Management and Releasing
Here's a common practice I see often (including from a very popular iPhone developer book)
In the .h file:
@interface SomeViewController : UIViewController
{
UIImageView *imgView;
}
Somewhere in ...
3
votes
2answers
133 views
mouseDragged events get stolen by another view
I have several views of class MyView (subclass of NSView) inside another NSView. MyView implements -mouseEntered:, -mouseExited:, -mouseDown:, -mouseDragged:, and -mouseUp:.
Almost always, when a ...
3
votes
1answer
65 views
Advice for a Cocoa drawing application
I'm new to Cocoa and looking for a little advice for an application from experienced Cocoa-ers.
I'm building a basic OmniGraffle-style app where objects are drawn/dragged onto a canvas. After the ...
3
votes
2answers
171 views
Getting the center point of an NSView
I need to get the center point of a NSView in the form of a CGPoint, how can I achieve this?
I am basically looking for the equivalent of the UIKit, UIView.center
3
votes
2answers
56 views
Problem tabbing to field when adding and removing view
I have an scope bar containing a NSSearchField. The bar can be shown and hidden using a menu item. I generate this bar by creating a new NSViewController (and loading a new view from the XIB). When ...
3
votes
2answers
571 views
NSView drawRect interfering with subviews?
I have an nsview and i use draw rect to draw an image for background. It also has 3 subviews nsbuttons. The problem is, whenever the mouse is down on a button, the other buttons disappear. But when I ...
3
votes
1answer
416 views
Automatically resizing subview created programmatically
I have a NSSplitView. On the left pane of that split view I have an NSTableView and a custom view created programmatically. I'm using a delegate to make sure my two panes don't resize at the same ...
3
votes
2answers
1k views
Rounded rect on NSView that clips all containing subviews
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 ...
3
votes
1answer
698 views
Make NSView in NSPanel first responder without key window status
Is it possible to give an NSView inside an NSPanel first responder status without giving the NSPanel key window status (making the main application window resign key)?
Thanks.
3
votes
1answer
392 views
Does NSView have anything analogous to UIView's setNeedsLayout/layoutSubviews methods?
Title pretty much says it all . . . do I put such things into the display method? Or is there something analogous?
3
votes
1answer
611 views
cocoa — getting nested NSViews and CALayers to resize proportionally
My NSWindow's contentView is an NSView subclass. It has some other NSView subclasses as subviews. The subviews are layer-based, and those layers in turn contain sublayers. Some of the sublayers ...
3
votes
1answer
542 views
Cocoa custom view for NSMenuItem
I am developing a small app that display the active mounts in a menu in the NSStatusBar. So far it looks like this:
I want to add an eject button to the right of each menu item (like the left bar ...
3
votes
2answers
467 views
any Cocoa control code that I can use that acts as a patch bay?
I would like to make a patch bay type control... any source online that anyone knows of that I could work from?
Thanks
3
votes
2answers
557 views
Printing CALayers
I have a NSView which contains many CALayers. When a user is editing a document, these CALayers animate all edits. I am attempting to implement printing for my app, but I am having some problems ...
3
votes
2answers
1k views
Making a Grid in an NSView
I currently have an NSView that draws a grid pattern (essentially a guide of horizontal and vertical lines) with the idea being that a user can change the spacing of the grid and the color of the ...
3
votes
4answers
999 views
Distinguishing a single click from a double click in Cocoa on the Mac
I have a custom NSView (it's one of many and they all live inside an NSCollectionView — I don't think that's relevant, but who knows). When I click the view, I want it to change its selection state ...
3
votes
1answer
2k views
Obtain a CGContextRef of NSView outside of drawRect?
I need to get CGContextRef of NSView object. It won't be so bad if I knew how.
In Carbon this thing was done like this:
CGContextRef cgref = ...
3
votes
3answers
346 views
Dynamically loading a part of a Window in Cocoa
I have an area of a Window (in my MainMenu.xib) which I'd like to populate dynamically with unrelated "views" such as an NSTable, IKImageBrowserView etc. at different points of time depending on some ...
2
votes
1answer
25 views
NSBezierPath Graph
I cannot figure out how to optimize the drawing of an NSView that contains a NSBezierPath.
Let me try to explain what I mean. I have a line graph, made by about 40K points, that I want to draw. I ...
2
votes
0answers
24 views
How can i pop up NSMenu at mouse cursor position?
I want to react on hot key press by displaying NSMenu at mouse cursor position.
My application is UIElement and doesn't have its own window.
I know there is method of NSMenu :
...
2
votes
1answer
48 views
NSView with NSImage inside of it — how come NSImage doesn't move with the view which is its parent?
I am writing a simple MacRuby app. I have an NSView that draws an image inside of itself when its drawRect() is called.
Inside that NSView subclass my drawRect() has (among some other lines of code)
...
2
votes
1answer
54 views
How to prevent retain cycles caused by binding to self
I have an application where I need to access model data from my subviews. I've been using bindings to pass data across views; however, the bindings to self seem to be causing retain cycles (dealloc ...
2
votes
0answers
133 views
Displaying AVPlayer content on two views simultaneously
I am creating an HTTP Live Streaming Client for Mac that will control video playback on a large screen. My goal is to have a control UI on the main screen, and full screen video on the secondary ...
2
votes
1answer
88 views
How to keep a CALayer at the same position while resizing the parent NSView?
Imagine a small red box (CALayer instance) drawn in the lower left corner of its parent layer (which is the root layer of a layer hosting NSView).
When the frame of the parent view changes, the red ...
2
votes
1answer
75 views
How to get the preferred size of NSButton?
I have a custom view for an NSMenuItem that contains an NSButton. The title of the button is determined at runtime and I'd like to adjust the frame of the button so that the content (button title) ...
2
votes
1answer
80 views
Clean easy way to expand window according to subviews
I'm developing an application that uses a master-detail paradigm with an NSTableView as the master and an NSView as the detail. The NSView gets populated from another NSViewController's view; I have ...
2
votes
1answer
178 views
-setWantsLayer causes distortion to NSOpenGLView?
I've been trying to figure this out for a while, but this is what I want to do with my NSOpenGLView. Currently the NSOpenGLView covers the entire area of the window and I would like to add buttons, ...
2
votes
1answer
141 views
NSView receiving click events thru a NSTextView
I have a NSTextView, non-editable, non-selectable, in a NSView. I need the NSView to receive click events when the text view is clicked - basically I need the click events to act as though the text ...
2
votes
1answer
282 views
NSPopover in NSCollectionView (or not)
I have a custom subclass of NSView that is used in an NSCollectionView.
The view shows a NSPopover when it is double clicked using the code below:
- (void)mouseDown:(NSEvent *)theEvent {
[super ...
2
votes
1answer
90 views
Equivalent of [UIViewController viewDidAppear:] in cocoa (for NSView)?
Is there an equivalent to [UIViewController viewDidAppear:] in Cocoa?
i.e., is there a way to get a delegate callback or notification when an NSView has appeared?
2
votes
1answer
82 views
Is there an intelligent way to handle view swapping/reusing in an NSScrollView?
Background:
I'm building a view-based NSTableView-esque control in Cocoa/Objective-C that offers the ease of use of a UITableView in terms of being able to layout a view in Interface Builder, rather ...
2
votes
1answer
89 views
NSView set Minimun Size on NSSplitVew
Is there a way of setting (programmatically or via interface builder) the minimun size of each of the panels (nsviews) on a NSSplitView.
Thanks in advance.
Mikywan.
2
votes
3answers
1k views
Custom NSView with rounded corners and drop shadow
I'm trying to create a custom NSView with both rounded corners and a drop shadow. I created an NSView subclass and have the following drawRect: method
- (void)drawRect:(NSRect)dirtyRect
{
NSRect ...
2
votes
1answer
107 views
Subview overwrites superview
I have a window of type NSBorderlessWindow with a contentView that has the following hirarchy:
view 1 -> draws gray background
|
+ view 2 -> draws rectangle with [NSColor ...