Tagged Questions

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
188 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 ...
5
votes
2answers
195 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 ...
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
525 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
763 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
247 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 ...
3
votes
1answer
120 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
533 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/ ...
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
70 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
1answer
264 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
373 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
1answer
696 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
569 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
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
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
1answer
288 views

Cocoa: distinguish input device / scrollWheel: as mouse-scroll wheel and TrackPad

I am looking for a method to reliably distinguish within [NSResponder scrollWheel:] if the users input device has a one-dimensional scroll-wheel or a two dimensional trackPad/magicMouse? In the first ...
1
vote
1answer
334 views

ShowWindow/HideWindow in Cocoa

In Carbon you could change a window's visibility with HideWindow(WindowRef) and ShowWindow(WindowRef). In Cocoa I know you can call NSWindow's orderOut: to hide and orderFront:, orderBack: or ...
1
vote
1answer
626 views

NSProgressIndicator not animating in layer-backed view

I have a bar-style NSProgressIndicator in a subview of a layer-backed view. Its behavior is sort of complicated, but at certain points, it is displayed as a bar-style indeterminate progress ...
1
vote
1answer
151 views

How to keep multiple menus with the same options in sync?

My application, obviously, has a main menu in the menu bar. One of these menu items contains a submenu that is also available in a NSPopUpButton somewhere else in my app. Until now I've just been ...
1
vote
2answers
628 views

Custom windowtitle + toolbar (ala. Mac App Store and Reeder for Mac)

I'm trying to figure out how to create the "new popular" combined window title and toolbar as seen in Reeder for Mac and Mac App Store (http://www.apple.com/mac/app-store/). Tried googling but this ...
1
vote
1answer
107 views

How to display a window within a plugin when the pluggable Cocoa app only exposes a C++ API?

I am developing a plugin for FileMaker Pro 11 Advanced on Mac using its C++ plugin API. I want to show an NSWindow on screen that is loaded via an XIB file, but I am unable to get the window to ...
1
vote
1answer
243 views

Cocoa (Snow Leopard) NSTextView's textStorage -setAttributes:range: removes characters!

I'm not sure what I'm doing wrong. I have a NSTextView and am registered as the delegate for its textStorage attribute. When I receive -textStorageDidProcessEditing:notification: I'm trying to apply ...
1
vote
1answer
184 views

Resizing NSTokenField after populating with tokens

I am using an NSTokenField as a way for users to enter tags. Everything works fine and it hooks up with CoreData managing the tags both when the user adds or deletes a tag. I recently added logic so ...
1
vote
1answer
2k views

Ignoring UI Events in AppKit

If I wanted to ignore a touch event in UIKit on the iPhone I would simply do: // Begin ignoring events [[UIApplication sharedApplication] beginIgnoringInteractionEvents]; //Do my code // Stop ...
1
vote
1answer
370 views

NSApplicationWillTerminateNotification not received

I have some code that needs to be run when the application terminates. I register my controller for the NSApplicationWillTerminateNotification as follows: [[NSNotificationCenter defaultCenter] ...
0
votes
0answers
7 views

Open QLPreviewPanel in 'multi display' mode

I'm using QLPreviewPanel to display the contents of a folder. By default this shows the first item and then the user can tap the multi display button to display them all. I would like to go into multi ...
0
votes
0answers
29 views

Getting the command back from NSSpeechRecognizer (OSX Python AppKit), regardless of whether or not it was in setCommands

I found this (below) osx-specific python code online, which works beautifully and saved me a ton of time. Essentially, I run the code and I can speak to my Mac and it listens to me. If I say a ...
0
votes
1answer
13 views

NSPopUpButton set it to the first item

I have a clear button in my Mac OS app. When the button is pressed, it clears all the values of the form and resets the NSPopUpButton to the first item. The question is how do I change the ...
0
votes
0answers
28 views

NSWindow + NSView subclass dragging issue

I wrote my own clone of Safari Tabs as ChromiumTabs is most likely one of the worst pieces of code ever ( NSGrayFrame hack and more ) and PSMTabbar is no longer up-to-date.. It is a simple NSView ...
0
votes
2answers
54 views

Disclosure button displaying a menu

Please give me an advice how to implement this kind of disclosure button as on my screenshot - a disclosure "arrow down" button displaying a menu on click: I've tried two approaches, using ...
0
votes
1answer
49 views

How to create a Toolbar with Mail / Finder like controls

I've been looking at this apple document: http://developer.apple.com/library/mac/#documentation/UserExperience/Conceptual/AppleHIGuidelines/Controls/Controls.html In the Window-Frame Controls ...
0
votes
1answer
41 views

NSTableView + NSTextFieldCell dynamic row size

I want to display a string inside a tableview that can be ( max ) 4000 characters long. I have tried using NSAttributedString to find out the row height for the NSTextFieldCell, but I always fall a ...
0
votes
1answer
26 views

NSTrackingArea and performance

I have a NSTrackingArea to determine whether I should show a close "button" in my view. I would like to show a rollover image. What is better, Actually using a button ( as a subview ) instead of ...
0
votes
1answer
187 views

How to use NSCursor to display custom cursor

I am trying to use custom cursor in my game using nscursor. I use following code //While initializing openglview mCustomCursor = [[NSCursor alloc] initWithImage:image hotSpot:NSZeroPoint]; ...
0
votes
1answer
166 views

NSTextField and NSComboBox are drawn differently in Lion

I've got a data form I developed under Snow Leopard, that has NSTextField boxes alongside NSComboBox fields, and this looked fine under Snow Leopard, but now in Lion, they're drawn slightly ...
0
votes
0answers
79 views

Replace NSOpenPanel systemwide

Is it possible to replace the default system NSOpenPanel with my own custom open panel systemwide? On windows we do this using API hooking but not sure about Mac. Thank you, Vance
0
votes
1answer
165 views

Updating a single image of an IKImageBrowserView

I searched everywhere and can't seem to find a way to do this. I am currently making a simple application to help our user configure image metadata for another application. I present the list of ...
0
votes
1answer
74 views

NSSound -(id)soundName:(NSString *)name;

Does [NSSound soundNamed:@"RandomName"]; cache sounds like [NSImage imagenNamed:@"randomName"]; does? It doesn't mention it in the class reference
0
votes
1answer
306 views

How to implement zoom/scale in a Cocoa AppKit-application

How do you implement zoom/scale in a Cocoa AppKit-application (i.e. not maximizing the window but scaling the window and all its subviews)? I think it's called zoomScale in iOS. Can it be done using ...
0
votes
2answers
270 views

Custom NSWindow drawing

I want to draw a custom NSWindow that allows me to add subviews even on top of the top bar ( where the traffic light buttons are and the title bar ). When I use a transparent window and use a custom ...
0
votes
2answers
206 views

NSTableView: How do you update a displayed tooltip?

For my NSTableView, I have defined -tableView:toolTipForCell:rect:tableColumn:row:mouseLocation: and this does return the string I want to display and the NSTableView does display that string as a ...
0
votes
1answer
300 views

custom view minimum size

Is there a way to enforce minimum size for a Custom View (NSView)? I know with window one can just set the minimum size, but there are no such setting for custom view. Is it possible to subclass ...
0
votes
1answer
48 views

Storing NSCombobox history across run

I'm writing a little Mac OS utility app that has a NSComboBox for URLs. I'd like the history to be persistent but I'm not sure where/when/how to save the data. If this was an iPhone app I would just ...
0
votes
1answer
82 views

Link scrolling of two tables

How can I link (synchronize) the scrolling of two NSTableViews (or their underlying NSScrollViews) in Cocoa AppKit? I tried simply setting the scroller of one to the scroller of the other, but this ...
0
votes
1answer
128 views

CGContextSetCompositeOperation error for some users when drawing NSWindow

A simple 10.6 Cocoa app I wrote that basically draws a regular window with some buttons and text has been spewing hundreds of console log messages: <Error>: ...
0
votes
1answer
169 views

Disable Full Keyboard Access for App

Can "Full Keyboard Access" (System Prefs -> Keyboard -> (Radio) All Controls) be controlled with some API? It causes major issues when this thing is on in my app (like buttons not working as expected ...

1 2