Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Snow Leopard & LSUIElement -> application not activating properly, window not “active” despite being “key”

I'm running into a few problem with a background application that uses LSUIElement=1 to hide its dock item, menu bar and prevent it from appearing in the Command-Tab application switcher. It seems to ...
6
votes
3answers
248 views

NSDrawNinePartImage gaps

I am working on drawing some custom buttons/textfields with NSDrawNinePartImage. I slice up an image into the nine parts in code and then draw it in a rectangle with NSDrawNinePartImage. ...
6
votes
1answer
247 views

Writing classes that work in both iOS and Mac OS

What is a good way to write classes that can be used in both iOS and Mac OS applications? I'm not trying to get a full cross-platform UI solution here, just a way to use several model classes from my ...
6
votes
1answer
187 views

Decoding integer and other masks in Cocoa

Cocoa has a plethora of integer masks and codes. For instance, NSCommandKeyMask or NSF1FunctionKey, which are clearly defined and documented in the headers. However, some can be archaic and when ...
6
votes
4answers
416 views

Getting better at drawing in code for Cocoa?

What are some suggested "paths" for getting better at drawing in code in Cocoa? I think at this point, that's my biggest weakness. Is drawing in code something general, or Cocoa-specific? Thanks! - ...
6
votes
2answers
2k views

How to handle with a default URL scheme

I want to build URI (or URL scheme) support in my app. I do a LSSetDefaultHandlerForURLScheme() in my + (void)initialize and I setted the specific URL schemes also in my info.plist. So I have URL ...
5
votes
2answers
194 views

Lazy Image Drawing

I have an object that needs to draw into a graphic context on demand, however, the content needs time to render and might not be available when the objects draw method is invoked. How is this ...
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
1k views

NSTextView not showing red misspelling underlines when on a layer

When an NSTextView is a subview of an NSView that is layer-backed (-wantsLayer == YES), it does not render the squiggly red underlines for misspelled words. All it takes to reproduce this is to make ...
5
votes
3answers
591 views

Aaron Hillegass _Cocoa Programming for Mac OS X_ Chapter 9 Question

In Aaron Hillegass' Cocoa Programming for Mac OS X, Chapter 9, the section called "Begin Editing on Insert", he explains how to do exactly that. The thing that confused me though, was that he did a ...
4
votes
2answers
494 views

Removing undo actions for a WebView's NSUndoManager

I have several WebViews that I swap in and out of my view hierarchy. Some of these WebViews contain form fields, so I implement the editingDelegate to provide the NSUndoManager for my document. The ...
4
votes
1answer
111 views

Being apprised of when NSStatusItem is hidden

I have an app which uses an NSStatusItem. On small screens there's not much space in the status bar. When a user switches to an application with a lot of menu items, my status item gets hidden. Is ...
4
votes
2answers
516 views

Get Certificates in Keychain

I've looked over the Security framework documentation but I can't seem to be able to find a way to get all of the certificates on a given keychain. Are there methods to accomplish this?
4
votes
2answers
754 views

NSTextField placeholder text doesn't show unless editing

I set the placeholder text of my NSTextField in Interface Builder, but the placeholder text doesn't show until I click inside the text field to edit it. Anyone else having this issue? Thanks EDIT: ...
4
votes
1answer
246 views

Why does the blinking cursor in textfield cause drawRect to be called?

I have the following view hierarchy setup in my program. Window +ContentView (Subview of Window) ++MyCustomView (Subview of ContentView) ++MyCustomOpaqueView (Subview of ContentView) +++TextField ...
4
votes
1answer
131 views

How can I handle shortcuts when LSUIElement is set to YES?

When LSUIElement is set to NO most of shortcuts are handled by application's main menu. But when LSUIElement is set to YES, there is no main menu and then no common shortcuts are forwarded to a first ...
4
votes
1answer
648 views

Programmatically resizing NSSplitView

I used to use and love RBSplitView, however I failed at reimplementing it programmatically as a certain version of xcode does not support IB plugins anymore. Therefore I went back to using ...
3
votes
1answer
64 views

What does “initial position” do in Xcode's nib editor?

Editing my nib for a document-based Cocoa application, I see that when I have a window or panel selected, Xcode lets me set its “initial position”: This is separate from the window's Frame, which ...
3
votes
1answer
139 views

What is the equivalent NSBox from AppKit to be used in Cocoa Touch environment?

Is there a similar to NSBox class from AppKit for MAC in UIKit for iPad?
3
votes
1answer
118 views

NSCFString leaking when handling key events

I am trying to capture key presses with this code. My problem is that Instruments throws a message about a leak. I am working without Garbage Collection. -(void)keyDown:(NSEvent *)theEvent { if ...
3
votes
2answers
527 views

How do I draw the desktop on Mac OS X?

I want to draw the desktop on Mac OS X (Snow Leopard). Specifically, I want to achieve the same effect as running: /System/Library/Frameworks/ScreenSaver.framework/Resources/ ...
3
votes
1answer
174 views

Responder chains for nil-targeted actions and events

Do events (i.e. -keyDown: and -keyUp:) follow the same responder chain as nil-targeted actions? Thanks.
2
votes
1answer
56 views

CoreTypes bundle

In the core types bundle you got a whole bunch of nice icons for all the Macs and iPods etc. that are out there. The finder can show them in the sidebar when you click on a shared device, like my mac ...
2
votes
2answers
67 views

Runloop in FoundationTool

I am writing a Foundation Tool. I have to do the threading to separate to different ongoing tasks. I tried to do threading but it was continuously getting crashed. And finally I figured out the ...
2
votes
1answer
104 views

Why isn't applicationShouldOpenUntitledFile being called?

I added a applicationShouldOpenUntitledFile method to my application delegate, returning NO as Apple's documentation specifies. However, I'm still getting a new document on startup. What's wrong? ...
2
votes
0answers
90 views

Autocomplete window appearing in wrong place for NSTokenField

I have a layer-backed NSTokenField that is in a NSSplitView. The split is initially collapsed, with the token field hidden. When I reveal the token field, it works properly, except that the ...
2
votes
1answer
349 views

How to make action to close NSPopover?

Hi I implemented NSPopover in one of my apps, but the Popover will not close. I'm guessing that it should close once I click something else, but its not.I know that there is a close popover action but ...
2
votes
1answer
263 views

NSNumberFormatter doesn't allow typing decimal numbers

I am totally bewildered using NSNumberFormatter. This should be totally simple but I can't get it to work. I'd like to set an NSTextField to allow typing decimal numbers, either with a decimal point ...
2
votes
1answer
167 views

Locking the Aspect Ratio of an NSDocument's window

I have a document based application and I am trying to lock the aspect ratio of the document's window. The content of the document is a custom view which I can easily set an aspect ratio. However, ...
2
votes
2answers
431 views

How to get notified when NSWindow closes

how can I take notice when an NSWindow should or will get closed? I'd like to have something like the windowWillClose. Unfortunately NSWindowController does not have as much convenient methods as ...
2
votes
2answers
516 views

11415 compile errors FTW?

This is something I've really never seen but, I downloaded the source code of the sine wave example at http://www.audiosynth.com/sinewavedemo.html . It is in an old Project Builder Project format, ...
2
votes
2answers
2k views

EXC_BAD_INSTRUCTION (SIGILL) at random during use of app. Bug in AppKit?

I'm currently testing a new version of an app of mine on OSX 10.5 An user reported some weird crashes during use of the application, sadly not reproducible by me. At first sight it seems to happen ...
2
votes
2answers
614 views

Zooming in an NSView

I have an NSView in which the user can draw circles. These circles are stored as an array of NSBezierPaths, and in drawRect:, I loop through the array and call -stroke on each of the paths. How do I ...
2
votes
1answer
244 views

NSSegmented Control Not Selecting

I have an NSSegmentedControl with the textured rounded style, and with the selection mode set to 'any'. The problem is that it is treating it like select none. When I switch the style to capsule, it ...
2
votes
1answer
368 views

Python's AppKit and ObjectiveC Delegates

AppKit allows Python programs on a Mac to use ObjectiveC classes. I am not very familiar with ObjectiveC, but I want to access the NSSound class using AppKit in order to create an audio player. My ...
2
votes
2answers
398 views

How to relayout content of NSTextView so that my tab characters are drawn with width of 4 characters

I'm working with an NSTextView and one of the requirements I have is that a tab character, '\t', shall have the same width as four spaces. So the text-content would look like this: AAAA AAAA - 1 ...
2
votes
1answer
630 views

NSMenuItem's value binding with BOOL

I am having some issues binding an NSMenuItem's "value" binding to a BOOL. I simplified the problem to this: 1) The menu item must call the action method that changes the value of the BOOL ...
2
votes
2answers
1k views

Force NSMenu (nested submenu) update for Main Menu of Cocoa App

I have some submenu inserted as Window item submenu of Main Menu I have an instance of my object (let's assume its class name is MenuController) inherited from NSObject and supports 2 from ...
2
votes
1answer
199 views

Animations when showing sheet (Cocoa)

I had a question when showing sheets in Cocoa and particularly, the animations. How do I show a sheet (plain NSWindow/NSPanel) with and without the nice animation? It does this automatically for ...
2
votes
1answer
610 views

Subclassing NSScroller, how to get rid of the white square in the lower right corner?

I've created an iTunes like subclass of NSScroller, however if both the horizontal and vertical scrollers are visible in an NSScrollView or NSTableView I'm left with an ugly white square in the lower ...
2
votes
1answer
694 views

Cocoa customize system context menu

I need to add custom element to context menu for all running application. It is posible? Something like: I select text and in context menu i have not only application items, but additional items of my ...
2
votes
3answers
451 views

How can you suppress all logging in Cocoa app?

Is there a way to force suppression of all logging in a Mac OS X desktop Cocoa app? Sometimes some part of the system or a plugin (which is out of your control) will log messages on behalf of your ...
2
votes
9answers
567 views

What are your motivations for developing Software for Mac OSX?

I really like my Mac, and I am thinking about developing Software for it some time in the future. What are the reasons why you're making Mac Software? Because you think Mac is so cool? Or is the ...
1
vote
1answer
23 views

How to get the range of characters that are visible from within -textStorageDidProcessEditing:?

For my syntax highlighting implementation, I observe changes to an NSTextView using -[<NSTextStorageDelegate> textStorageDidProcessEditing:]. - ...
1
vote
1answer
18 views

How to refresh/invalidate NSCursor?

When I update my cursor rect with resetCursorRects on my custom view, it correctly updates the cursor, as long as the user moves out of the rect, then back in. Is there a way where I can get the ...
1
vote
1answer
22 views

When should I call setContentAspectRatio?

I'd like to have an NSWindow which has a 2:1 width to height ratio while it is open, but allow it to have any ratio when full screen. I'm initially setting the content ratio in the AppDelegate like ...
1
vote
1answer
44 views

Where to put view initialization in nibless AppKit project?

I'm currently working on a nibless AppKit project and I was wondering where it would be appropriate to initialize views other than the main window. Here is what I have now: main.m #import ...
1
vote
3answers
91 views

Deselect text in an NSTextView programmatically?

I am using the following code to deselect an NSTextView, as suggested here. Unfortunately, nothing at all happens. I have tried what I know to debug it, but everything seems to be working correctly, ...
1
vote
1answer
75 views

Export View as PDF from Cocoa

Brad Miller @ Cocoa Dev Central wrote a tutorial regarding Creating PDFs from Cocoa. I tried to follow the tutorial there, but since its rather old (2003) a lot of code was deprecated. I got it to ...
1
vote
2answers
98 views

get the width and height of NSView and NSImageView

I have a NSView, there is a NSImageView on the NSView in the source codes of the NSView I wrote: NSImage *image = [[[NSImage alloc] initWithContentsOfURL:url] autorelease]; NSImageView ...

1 2 3 4