Tagged Questions
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 ...
6
votes
4answers
417 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!
- ...
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 ...
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
595 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
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
764 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
248 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
653 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
141 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
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
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
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
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
617 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
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
2answers
404 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
635 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
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
611 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
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
27 views
Mail.app like source list footer
Is there a built in way to create a Mail like footer for a source list in a Mac app?
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
47 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
2answers
141 views
Add lots of views to NSScrollView
I'm trying to add one subview (view from an NSViewController) for every element in a dictionary to a NSScrollView to get kind of a tableview, but with much more flexibility over the cells.
Is it ...
1
vote
1answer
141 views
How to end editing in NSTextFieldCell inside NSOutlineView after ESC key is pressed
I'm trying to get a custom NSTextFieldCell (inside a NSOutlineView) to end editing when the ESC key is pressed but cannot find any way to accomplish this. I tried to add an observer for the ...
1
vote
2answers
248 views
Using undocumented classes such as NSPreferences in Mac App Store
There is an undocumented class called NSPreferences that appears to be used by Safari and Mail, and eases creation of multipage preference pages.
Has anyone had experience using NSPreferences or ...
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
152 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
0answers
121 views
Strange NSPasteboard and TextEdit interaction
I am drag-dropping a string from two places in my app. One from a custom NSView and one from a NSTableDataSource delegate. The first one allows me to drag text into the TextEdit application, the ...
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
3answers
574 views
Getting the album artwork, song name, album name and artist name from an audio file
How can I get album artwork, song name, album name and artist name from an audio file? I need to display this without the use of iTunes. Thanks.
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
485 views
NSTextView inside an NSScrollView doesn't scroll :(
I have the following code in a stand-alone Cocoa test app:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSView *contentView = [window contentView];
NSTextStorage ...
1
vote
1answer
755 views
Adding yourself as an observer to an array than an NSArrayController is bound to?
I have class called AppController which contains a mutable array of Person objects called people. Each person simply has an NSString and a float.
I also have an NSArrayController whose contentArray ...
1
vote
1answer
286 views
Purpose of CALayer?
I'm slightly used as to what the purpose of CALayer's existence is. Why not just put the properties in a UIView?
Thanks.
1
vote
1answer
605 views
Cocoa AppKit - Dismissing a modal window (i.e. popup or contextual menu) and pressing the button currently hovered above
Basically I want to create the effect of that provided in the system's menu bar. A user presses on one of the menu headings, and as he moves across the different headings, the menus open up ...
1
vote
1answer
566 views
NSTextField and hidden property
I have an NSTextField that I hide when the user presses a button. I hide the text field using [textField setHidden:YES]; The problem is that is the user is typing in the text field (i.e. the text ...
1
vote
1answer
260 views
Open panel appears then disappears immediately
I am using this code:
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel beginForDirectory:nil file:nil types:[NSImage imageFileTypes] modelessDelegate:self didEndSelector:NULL ...
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]
...
1
vote
1answer
343 views
Which Objective-C framework do I have to use to record my screen?
I'm already recording from my iSight from a python script using the pyobjc bridge and the QTKit framework.
Which framework/device/... should I use to capture the video of my screen instead of 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
1answer
33 views
NSTableView drawRow issues
I want to implement a gradient alternating row style in my NSTableView subclass.
- (void)drawRow:(NSInteger)row clipRect:(NSRect)clipRect
{
[[NSColor redColor] set];
NSRectFill(clipRect);
...
0
votes
0answers
23 views
NSOutlineView reloadData not reloading data while editing row/column
I have an NSOutlineView that displays a graph of objects. I have an NSViewController that implements NSOutlineViewDataSource. It is possible to edit the view, by double clicking on a text field. I use ...
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 ...