0
votes
2answers
10 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)]; ...
2
votes
1answer
52 views

EXC_BAD_INSTRUCTION when using NSRunAlertPanel

To show errors on some condition, I am using NSRunAlertPanel on Mac OS X (on the code which is ported from Windows, where I was using MessageBox). Before actual creation of Windows, some code is ...
1
vote
1answer
39 views

Display contextual NSMenu without blocking main thread

I had some unexpected results when displaying a contextual NSMenu. I'm presenting the menu myself, not using the menu property of an NSResponder. It turned out, presenting an NSMenu is a blocking ...
1
vote
0answers
63 views

Strange Behavior With NSTextField and an NSAttributedString Placeholder

I'm adding a placeholder to an NSTextField: NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0.0, 0.0, 100.0, 30.0)]; NSAttributedString *string = [[NSAttributedString alloc] ...
0
votes
1answer
28 views

NSToolbarItemGroup - doesn't work?

NSToolbarItemGroup is documented here. I can't find much more than that about it! I'm trying to use it, to see how it looks. My code is basically lifted directly from the documentation. However, I ...
1
vote
1answer
52 views

Capturing blank stills from a AVCaptureScreenInput?

I'm working on sampling the screen using AVCaptureScreenInput and outputting it using a AVCaptureVideoDataOutput, and it's not working. The images it does output are blank, but it appears like I'm ...
2
votes
2answers
67 views

NSViewController New vs. InitWithNibName issues

I am having a weird error with NSViewController where if I allocate a view using the viewcontroller's regular init message, the view created is not my view, but when using the default NIB name, it ...
1
vote
2answers
61 views

How does +[NSColor selectedMenuItemColor] magically draw a gradient?

I'm implementing a custom NSMenuItem view that shows a highlight as the user mouses over it. To do this, the code calls NSRectFill after setting [NSColor selectedMenuItemColor] as the active color. ...
0
votes
0answers
44 views

How to customize NSStepper layout?

I'm a Cocoa beginner and building my first commercial app. It has a stepper, which I want to have a custom layout. It should be a little bit bigger and have another bg color. I know how to customize ...
0
votes
1answer
38 views

Scaling layer contents when animating layer-backed view

I'm animating a layer-backed view that contains several subviews. Everything is laid out using auto layout. Currently, as I animate the view, the subviews are not being scaled along with it: I'd ...
0
votes
1answer
63 views

Saving a couple levels of indentation off of an NSOutlineView

I have an outline view where I don't want to indent the top couple levels (they have a distinctive appearance anyway), but I do want to indent subsequent levels. How can I do this? I've tried ...
1
vote
0answers
28 views

Is it possible to turn NSNonactivatingPanelMask on and off on an NSPanel

I understand that this use case is atypical, but I've been trying to figure out a way to make an NSPanel non-activating, only in some circumstances. If an NSPanel is initialized with ...
1
vote
1answer
131 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 ...
0
votes
0answers
30 views

Multiline NSTokenField display error

i insert a NSTokenField into a NSView, when input enough tokens, it turn into multiline mode, but there some problem with it, top of first line be cut off 2px and the line space between two line ...
0
votes
1answer
101 views

Testing GUI components that use grand central dispatch

I'm trying to write unit tests for some gui components that use grand central dispatch. I'd like to call threaded code from the test, wait for it to finish, and then check the results on the gui ...
0
votes
1answer
104 views

drawLayer:inContext: draws background over content when using Layer-Hosting NSView

This is causing me some pain... I wish to use layer-hosting views in my app and I'm having this weird problem. Here is a simple example. Simply implemented by creating a new project in Xcode and ...
1
vote
2answers
80 views

Deallocating window when animations may be occurring

My AppDelegate maintains a list of active window controllers to avoid ARC deallocating them too early. So I have a notification handler like this: - (void) windowWillClose: (NSNotification*) ...
0
votes
0answers
90 views

Encoding NSViewController for Lion's user interface resume feature

Any idea what are the best practices for archiving an NSViewController inside a window for resume (user interface preservation) purposes? I've tried archiving it in the window controller's ...
2
votes
0answers
52 views

Subviews of a NSCollectionViewItem's view are always nil

I have a very basic setup with a NSCollectionView. I have a subclassed NSCollectionViewItem which is used as the itemPrototype for the collection view. The collection view item has a view. Using ...
0
votes
0answers
35 views

NSScrollView generating scrollbar ghosts

Please see attached image: http://i45.tinypic.com/fu8bpz.png Has anyone every seen this kind of weird scroll bar behavior? I embedded a custom view in an NSScrollView. The scroll bars do not appear ...
0
votes
0answers
170 views

Custom collection view with dynamically resizing subviews

I am trying to create an NSScrollView-enclosed container view that contains a linear list of subviews. This is much harder than it seems; I seem to be continually butting into various "automatic" ...
0
votes
1answer
82 views

NSPanel as HUD Panel - fullscreen makes strange empty space

I have NSPanel window with style Utility panel (gray small title bar). I can fullscreen this window using standard MAC OS X fullscreen feature. But one strange thing happens - the content view of ...
0
votes
0answers
70 views

CoreText font smoothing on a transparent background

I'm trying to render using CoreText (appkit version) on a (semi-) transparent background, and as a result the edges aren't smooth. Searching the web suggests that there's no solution to this problem, ...
0
votes
2answers
153 views

NSApplication windows property - windows not removed?

I have a NSWindow/Controller that I display modal. It has a "Close" button hooked up to an action like this: - (IBAction)close:(id)sender { [self.window orderOut:sender]; [self.window close]; ...
0
votes
2answers
124 views

NSTextField clicked link colour

I have an NSTextField that contains an NSAttributedString which itself contains a clickable link. I've change the colour of the link for my own styling, however when I click on it it becomes blue and ...
5
votes
2answers
263 views

How to uniformly scale rich text in an NSTextView?

Context: I have a normal Document-based Cocoa Mac OS X application which uses an NSTextView for rich text input. The user may edit the font family, point size and colors of the text in the ...
0
votes
1answer
109 views

How the Xcode scheme menu/popupButton implemented?

On Xcode's toolbar, it has a scheme selection menu (or like a NSPopupButton). It looks like was implemented with two NSPopupButton. Or implemented with two buttons, each with a menu. Anyone has ...
0
votes
0answers
142 views

NSSegmentedControl + NSSegmentedCell - Drawing individual segments

I'm trying to draw individual segments of an NSSegmentedCell- just the backgrounds, to be precise. Clearly, drawInteriorWithFrame:inView:, drawSegment:inFrame:withView:, etc. don't do this. ...
3
votes
1answer
112 views

How make button in NSWindow clickable while a sheet's on top of it

I have created a custom (themed) NSWindow, by creating a borderless window and then recreating all elements of the window border/background inside the content view. I've created the window widgets ...
0
votes
0answers
84 views

Cocoa App State Preservation not being saved when last window closes

I have a single-window mac application, and that window has the "restorable" attribute enabled so that its state is serialized/deserialized upon quitting and relaunching the app. Everything is ...
0
votes
1answer
95 views

NSCollectionViewItem, size to content

I have an NSCollectionView, which I'm binding to a collection of strings. The view that I'm using for my NSCollectionViewItem is very simple, it simply contains an NSTextField. NSView - NSTextField ...
0
votes
0answers
36 views

Appkit side bar with expandable sub-views that can be reordered by being dragged about

Although I'm normally an iOS developer, I'm currently starting the development of my first Mac OS application. I'm hoping that someone can start me off on the right tracks. My application needs a ...
0
votes
0answers
34 views

App not hideable

I know that it is possible to make a NSWindow unhideable. But is it also possible, is there a property, to tell the compiler to make the whole app not hideable ?
0
votes
1answer
89 views

Display NSPopover above dock icon

How can I display an NSPopover above my app's dock icon?
0
votes
1answer
130 views

NSTextField - how to change size and position of text/editing area?

Well, I got this: http://d.pr/i/jItM I obviously want to move text down and away from left edge. I have subclass of NSTextField where I draw the background, but I wasnt able to find out this.
0
votes
2answers
43 views

NSUserDefaults per document

Does the AppKit framework provide a way to store NSUserDefaults per NSDocument? If not, how would you recommend to implement this?
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 ...
1
vote
2answers
201 views

How can a Mac app be so retina unfriendly

To my knowledge, the windows, labels, ... etc. are automatically retina-fied when they run on the new MacBooks with Retina Displays. That's the case with most of the apps I have (third party apps I ...
4
votes
1answer
68 views

Picker like custom control for OS X?

Is there a OSS custom control or source code sample for doing something like the iOS Picker controls on Mac OS X (the spinning barrel thingie)? A bit of research on the web and sites like ...
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 ...
1
vote
0answers
85 views

Open untitled file in Document-based app

I want my app to open new untitled document every time it starts. It worked in 10.6 but now I upgraded to 10.8 and when I close the window with cmd+w and then restart the application it wont open any ...
2
votes
0answers
210 views

How find out if I'm an NSButton with buttonType NSSwitchButton?

I'm subclassing NSButtonCell to customize the drawing (customizable theme). I'd like to customize the way checkboxes and radio buttons are drawn. Does anyone know how to detect whether a button is a ...
0
votes
1answer
106 views

Event Handling Without Subclassing

I've recently watched some Lynda tutorials on how to program in Objective C and Cocoa. Coming from a PHP and C# background, one thing caught my attention - event handling. As I was watching the ...
5
votes
3answers
295 views

Command Line Tool interact with Cocoa app

I have a Cocoa Document-Based Application (text editor) and I want to be able to interact with it from the command line. For example, I'd like to set it as the editor for typing git/svn commit ...
0
votes
1answer
235 views

Promising files from my view-based NSTableView

I'm writing a Mac app with a view-based table view. It's a list of images, which I intend for the user to be able to drag to the Finder to save each image to a file. The data source owns an array of ...
0
votes
1answer
116 views

Example of custom NSSharingService window

It seems to be possible to customize the NSWindow used by an NSSharingService. Does anybody know of any examples where this has been done?
1
vote
1answer
403 views

loadNibNamed deprecation in 10.8

I have found that loadNibNamed is deprecated in 10.8 - what is the proper way to load the nibs? I'm trying to create a custom sheet in my app, do I have to create NSWindowController with ...
1
vote
1answer
97 views

Purpose of NSRefreshedObjectsKey

In a NSManagedObjectContextObjectsDidChangeNotification notification, I sometimes get the NSRefreshedObjectsKey key. I understand refreshed objects to be a new fetch of the object from the persistent ...
1
vote
1answer
163 views

Cocoa - How do I initialize a view programmatically ?

I have a problem understanding how to initialize a view without hooking it up in my nib-file. So what I want to do is, instead of dragging in a view and assigning it a dedicated class, I want to ...
0
votes
1answer
42 views

Filter runningApplications List?

I am trying to know if application has UI or its a agent or application without UI. My approach is to use, NSArray *runningApplicationsList = [[NSWorkspace sharedWorkspace] runningApplications]; ...

1 2 3 4 5