Tagged Questions
0
votes
2answers
9 views
NSView invisible unless I override drawRect, and then it gets clipped even if setMasksToBounds is NO on superview's layer
Trying to add a NSView to an existing NSView, but I'm failing miserably for some strange reason. I'm doing this:
_resizeView = [[NSView alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)];
...
0
votes
0answers
23 views
NSResponder not receiving keyUp event when Cmd ⌘ key held down
I'm using a custom subclass of NSView and receiving keyboard events through the keyDown/keyUp methods, everything works fine except when the "Cmd ⌘" key is pressed, keyDown events are fired as normal ...
0
votes
1answer
16 views
How to fix the width of the view displayed as a row in a NSTableView?
I have a view-based NSTableView.
I have created a NSView to insert in this NSTableView as a row.
In the xib defining the NSView, the latter has a width set to 280.
When I add my NSView to my ...
0
votes
1answer
32 views
XCode display a project image in the credits.rtf file
I want to take an image from my project and add it to the "About MyApp" window.
This seemed as simple as adding the image to the credits.rtf file; once I dragged and dropped the image from the ...
0
votes
0answers
14 views
How to change width of frame and save right corner in the same place in Cocoa?
I've got NSView object loaded from XIB file. I added mouseDown:, mouseDragged: and mouseDown:. It's red box on the screen. What i want is to change it's width, but with save it's right corner position ...
0
votes
1answer
11 views
Resizing weirdness in custom View with isFlipped YES
I'm having a hard time getting my subview to behave properly.
I am using auto-layout. My main window is an NSSplitView. One of the views in the split view is a custom view, where I set
...
0
votes
1answer
45 views
[_NSViewDrawOperation release]: message sent to deallocated?
I have a NSCollectionView which consist of some images.when mouse scroll over the NSCollectionView,in some case the app crash.So I enable Zombie Object and Malloc Stack.When app ...
2
votes
1answer
36 views
NSView is not showing up after it was added as a subview (Cocoa/OSX)
In my program I have the following set up:
I have 3 NSViews which I made in the interface builder
So PaintView is a subview of PlayerView and ImageView is the view on top of PlayerView.
When the ...
0
votes
0answers
31 views
OS X: Setting up a playback controls overlay for an AVFoundation video
I am trying to set up an NSView that will be overlaid on top of a video that is being played by AVFoundation. I really just want to create something that looks similar to the native quicktime player. ...
0
votes
1answer
14 views
Is there any difference in position of the NSViews in the object menu in the interface builder?
Here is what I have in my Objects menu in the interface builder
Im curious if the order of ImageView , PaintView and PlayerView matters? In my case I want to stack them in the following order: ...
0
votes
1answer
29 views
How can I draw something on top of AVPlayer video in Cocoa?
In my app I want to be able to draw rectangles on top of the playing video. I already implemented the drawing canvas which is a NSView, and I have a player implemented as well.
However, when I place ...
0
votes
0answers
65 views
Bring the NSView to front in Cocoa for OSX
In my app I have two NSViews layered on top of each other. Both of them were created in the Nib, not programmatically. View1 has the following setup:
[view1 setWantsLayer:YES];
[[[self view1] layer] ...
0
votes
2answers
69 views
How to make the NSView transparent, but leave objects belonging to it as they were? [duplicate]
In my app I have a NSView that I use as a drawing canvas to draw some primitive shapes like rects and ellipses using NSBezierPath. Right now I need to make my canvas transparent, but I want my shapes ...
0
votes
1answer
38 views
How to change the focus ring color?
In the draw function of the NSImageView,I want to set my custom focus ring color,not the default blue color.I tried as follows code
NSSetFocusRingStyle(NSFocusRingOnly);
[[NSColor redColor] ...
0
votes
1answer
50 views
Initialising custom control both programmatically and from NIB
I am writing a custom UI control, and am curious as to the standard practices around initialisation (particularly dependance on the control's delegate). Like most controls, my control relies on the ...
0
votes
0answers
69 views
NSTableView willDisplayCell: not getting called
I'm developing a blogging client that needs to run on Tiger and above. To display comments, I used joar.com SubviewTableView. It allows NSViews in NSTableViews. There's a custom cell that handles ...
0
votes
1answer
24 views
Make compiler aware of NSView subclass methods when building ViewController's view programatically
I have created a subclass of NSView that allows me to easily change the background color via the method - (void)setBackgroundColor:(NSColor *)aBackgroundColor.
I want my view controller's main view ...
1
vote
1answer
101 views
Draw a NSImage using cocoa
Currently I am drawing some shapes using Bézier Paths on an NSView. Where the drawing code get execute on drawRect: method and creates an image in the end.
I don't want to show this View to the ...
2
votes
1answer
177 views
OS X application in full screen mode on two monitor setup
Basically I would like to run OS X application in full screen mode on two monitors. There is no specific layout I would like to accomplish, I would just like to zoom in application to use whole two ...
0
votes
0answers
87 views
How Can I use a custom view with popup view controller
I have made a Popupview on a standard NSView. The Popup appears-OK. But I would like to show a programmatically created view. So I set the view of the view delegate of the popupViewController.
...
0
votes
0answers
31 views
NSStatusItem draw animation when highlighted
I'm using NSStatusItem in my project and I want it animated when my program is running. It is works fine when item is not selected. But when i'm clicking on it the image is freezing. I was trying to ...
0
votes
1answer
56 views
Change divider positions in NSSplitView when subviews change
I have an NSSplitView with four subviews. Each subview has a header with some text and an on/off checkbox, and below it an NSTableView. The user can toggle visibility of the table by using the ...
0
votes
1answer
67 views
Image of NSView with background
I'm trying to get an image of a view, so I can put it in a NSImageView.
I'm using NSViews bitmapImageRepForCachingDisplayInRect: method.
However, this method does only return the contents of the ...
0
votes
0answers
44 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
0answers
110 views
Showing views like Safari
I am having a grid of views that is currently shown in a simple grid architecture. But I want to know how can I show it in curved architecture as follows:
0
votes
0answers
54 views
Memory leak in setWantsLayer to NSView
Can anybody help me to figure out why I am getting memory leak in my app while setting wants layer:
[_feedTableBaseView setWantsLayer:YES];
[_feedTableBaseView setLayer:viewLayer]; //<- Static ...
1
vote
1answer
166 views
Efficient drawing in NSView drawRect
I have an application I'm writing in which I'm drawing into an NSView. In mouseDown I am saving the location in my data model and then drawing a graphic at that location within the drawRect method of ...
1
vote
1answer
57 views
How to erase drawn objects in Cocoa?
I created a drawing program. It works great, you can import an image and annotate it with different colors and brush configurations.
My problem is I can't figure out how to allow erasures. I wrote ...
0
votes
1answer
77 views
Call a method in appDelegate from a button action connected with an nsView
Here is my problem. I have an NSTextField connected to my app delegate. Then i have a CustomView in my MainManu.xib associated with a new class i created, "myView", sublass of NSView. finally a Button ...
0
votes
1answer
38 views
How to get a white half transparent NSView
The result I want is:
I tried to set the background color of that "white transparent view" to white with a alpha about 0.5f. But the result I got is:
Can somebody tell me how to do it?
0
votes
1answer
81 views
How to Hide Divider when NSSplitView subview is Collapsed?
OK, here's my problem :
I've been using DMSplitView for some NSSplitView manipulation. However when the rightmost view is collapsed, the divider (even if it's being pushed to the right) is still ...
0
votes
1answer
63 views
Objects created in initWithFrame method not know in another method of the same class
This is the proof that I don't understand some fundamentals, but it's still the first week in OO! ;)
Within my view class this object is created in the initWithFrame-method:
- ...
1
vote
2answers
44 views
String Alignment in NSFont / NSView
He, when I draw Text into my view like this:
NSMutableDictionary *textAttrib = [[NSMutableDictionary alloc] init];
[textAttrib setObject:[NSFont fontWithName:@"Helvetica Light" size:15] ...
1
vote
1answer
40 views
Error at calling a method to draw text in NSView
And the next noob question is....I have to draw a lot of text into my view and thought it was a good idea to write a method that makes that easier. This code is in my view:
- (void)drawText: ...
1
vote
1answer
92 views
Draw into a NSView via mouse event
i am new to programming, objective-c (and stackoverflow). I'm learning and moving forward very slowly ;) but then I ran into a problem, which google couldn't solve. I have a single window and a NSview ...
0
votes
1answer
19 views
Click events getting routed to the wrong view
I have a window with two views in it:
Both the movie view and the controller view override mouseDown: and mouseUp:, for different purposes (the movie view has a target and action and reacts as a ...
1
vote
1answer
38 views
When is it safe to call setAnchorPoint: for a CALayer?
I want to set the anchorPoint property on a layer inside one of my NSViewControllers.
I've tried to set the anchorPoint inside loadView and awakeFromNib; these both get called the first time the view ...
2
votes
1answer
105 views
Multiple UI threads in Cocoa
I have a Mac OS X server application that renders NSViews and returns them over an HTTP interface as images for use elsewhere. There's no visible UI, and the application creates detached NSViews ...
0
votes
1answer
77 views
How to get correct frame origin when using auto layout?
Using Interface Builder I have a NSView with a multi line NSTextField (a label) and directly below that, a NSComboBox. Since the height of the label is dynamic (e.g. depending on the translation used) ...
0
votes
0answers
38 views
Core-Plot covers sibbling NSViews. Bug?
I have a problem using Core-Plot in my Mac OS app (target is 10.7):
A CPTGraphHostingView and a NSView have the same parent view.
The NSView is above the CPTGraphHostingView in the view tree.
...
1
vote
1answer
54 views
CGImage recording distortion
I've written a helper class to record a NSView and save it to a QuickTime file. The view is recorded fine to a QuickTime movie but the output is skewed for some reason. The core of my class is below, ...
0
votes
1answer
136 views
Adding subviews to NSView
I want to add subview to NSView dynamically. I set the coordinates of NSView as :
NSView *tmpView = [[NSView alloc]initWithFrame:self.view.frame];
I want to add dynamic number of imageViews to ...
0
votes
1answer
29 views
Keep an NSTextField (non visible) or start a new one when needed?
I have a 'canvas' view in which the user can enter a short strings at various positions. I use an NSTextField for the entry, or for editing, but when not being edited the text is just drawn in the ...
3
votes
1answer
113 views
Make NSWindow truly the highest level (above mouse, above mission control/expose)
I was wondering if it is possible to make my NSWindow show above absolutely everything. I current set the window level to CGShieldingWindowLevel using the code...
[self ...
2
votes
2answers
126 views
Getting exact modifier key state in NSView flagsChanged
I am using flagsChanged in NSView to trigger events when a modifier key is pressed or released. However, I do not quite understand how to get the actual new state of the key when this happens, short ...
0
votes
0answers
42 views
Mac OS X - NSScrollView insertion Logic
I have created an app for Mac OS x which when I run it on the macbook pro 13" only 3 quarter of the application is visible. Now I'm trying to add a NSScrollView and make the whole [_window ...
0
votes
1answer
93 views
Custom animation of views while entering fullscreen mode in os x application
Is there any way to implement an animation (frame changing) for views at the same time, when app is going to full screen?
Briefly:
I have an app with 1 window, which contains 3 views on it.For some ...
0
votes
0answers
55 views
Is there any frame for QWidget on mac?
I am wondering if there is any frame for QWidget or QMainWindow on Mac. when I see frameGeometry(),width() and geometry.width() both turns out to be exactly same.
I call both of the function after ...
0
votes
2answers
175 views
Mac OS X custom application view
I've been searching Google and S.O. the last few days and am not quite sure the right question to even ask.
I'm 100% a complete noob when it comes to OS X programming. Thought I'd try my hand at a ...
0
votes
1answer
150 views
Adding NSViews to NSScrollview - Mac OSX
I'm trying to add multiple images of NSImageView to the NSScrollView. When I add it as a subview, the scrollview doesn't seem to scroll and when I add it as a document view I can see only one image. ...




