Cocoa is Apple's application-development framework for Mac OS X, consisting of Foundation, Application Kit, and Core Data. Use the "cocoa-touch" tag for iOS questions.
6
votes
0answers
761 views
How to zeroing weak references under non-ARC?
I don't like ARC.
But the most important feature of ARC, zeroing weak reference, is missing under non-ARC. Currently I'm using MAZeroingWeakRef, it works, but hacky, sometimes makes codes redundant. ...
5
votes
0answers
247 views
Cocoa constraints causing high cpu usage
I recently switched to NSLayoutConstraint in my app and I have suddenly noticed that, in some views, my app use about 20% or more of CPU constantly. As I said it only happens when some views are on ...
4
votes
0answers
123 views
Is the AudioFilePlayer audio unit sandbox compatible?
I've run into a problem using the AudioFilePlayer audio unit with app sandboxing enabled on OS X 10.8. I have an AUGraph with only two nodes, consisting of an AudioFilePlayer unit connected to a ...
4
votes
0answers
76 views
How can I archive my cocoa framework
Sorry for my poor English first.I have a problem and I googled it and try to solve this problem the whole day.
The problem is I have a cocoa framework project, and It build succeeded and archive ...
4
votes
0answers
42 views
Paste Data or Alternatives to CMD V simulation
I used to simulate CMD V event to paste data from my app to the active app. However, it seems like with the new sandboxing restrictions this isn't allowed anymore.
Does anybody know another way to ...
4
votes
0answers
143 views
Dealing with layer-backed IKImageBrowserView, Z-ordering and other concerns
I am working on a project that needs to:
have a transition animation from a view that contains an IKImageBrowserView to another view;
have a hover overlay on each IKImageBrowserCell as the mouse ...
4
votes
0answers
263 views
Changing color of NSWindow title text
I know this won't be a popular question and some people don't like apps that have a non-standard look, but it is useful for my application.
Is it possible to change the color of the NSWindow's ...
4
votes
0answers
158 views
Very slow to open a file with application:openFile: after returning
My application implements the NSApplicationDelegate method -application:openFile: in its app delegate. There seems to be a problem new to OS 10.8 where after receiving the apple event to open a file, ...
4
votes
0answers
356 views
Mac OSX Console doesn't show Sandbox violations
I'm about to publish an update to my app on the Mac AppStore and wanted to check for sandbox violations. Compiled my app with entitlements and code-signed it... it's running, Activity Monitor confirms ...
4
votes
0answers
418 views
FSEvents file flags are set regardless of event stream creation options
According to Apple documentation, in the callback to FSEvents,
/* These flags are only set if you specified the FileEvents*/
/* flags when creating the stream.*/
...
4
votes
0answers
482 views
IKImageBrowserView lazy loading?
In order to work with the IKImageBrowserView, one must implement a datasource with the following methods
– numberOfItemsInImageBrowser:
– imageBrowser:itemAtIndex:
This is not dissimilar to ...
4
votes
0answers
659 views
iCloud query with NSMetadataQueryUbiquitousDocumentsScope fails to update
I've got a working setup between two apps (one iOS, the other Mac) where they both place files in the ubiquity container and both monitor that container using NSMetadataQuery. In most cases, the ...
4
votes
0answers
251 views
Can I change the current cursor from an inactive application?
I’ve got a utility Mac application that runs in the background (LSUIElement enabled). Under some condition this application displays a menu window with several buttons. The problem is that when I ...
4
votes
0answers
678 views
How do I use an NSProgressIndicator as the view of an NSToolbarItem and have it show in the customisation sheet?
I have an NSToolbar set up in my app. It was created in IB. One of the toolbar items uses a spinner-style NSProgressIndicator as its view, the rest are images.
When the toolbar's customization sheet ...
4
votes
0answers
192 views
Fast User Switching Hides CALayer
I have an GUI cocoa application that is automatically started when the computer is woken from sleep. The application runs in multiple users accounts at the same time and is sometime launched in a user ...
3
votes
0answers
67 views
Snapping an NSWindows in place while the user is moving it
What would be the best way to snap an NSWindow to some location while the user is moving it?
I have tried using windowDidMove, for mouse down events, but this function is called for every single ...
3
votes
0answers
132 views
Memory Leaks with PDFDocument + Quartz Filter
My application uses a quartz filter to convert images within a PDF document to black and white:
PDF Document *pdfDocument = [[PDFDocument alloc] initWithURL:[NSURL ...
3
votes
0answers
64 views
Weird issue with NSMenuItem, custom view and mouseUp:
I'm having a very very strange issue here with a NSMenu.
About half the NSMenuItems I use have custom views on them through the setView: method on NSMenuItem. In this custom view I've implemented ...
3
votes
0answers
111 views
Thread 0x0 may have been prematurely finalized with NSOpenPanel in MonoMac
I have problem when there is call to an object of type NSOpenPanel from an action of an object of type NSMenuItem.
My MainController has the next methods, where tblTest is a NSScrollView:
...
3
votes
0answers
92 views
Why doesn't com.canon.cr2-raw-image conform to public.camera-raw-image according to UTTypeConformsTo?
I am try to see whether a certain image is a RAW image file by getting the UTI for the file, then using UTTypeConformsTo() to see if the image's UTI conforms to "public.camera-raw-image", but when I ...
3
votes
0answers
55 views
Is it possible to open PDFs with Preview.app at a certain page?
I can happily open a PDF file at path with Preview.app from within my application using
[NSWorkspace.sharedWorkspace openFile: path];
However, I would like to launch Preview.app with that file at a ...
3
votes
0answers
45 views
How to add custom menu item “Create a Meeting/Task” on ical popupwindow menu
Requirements :
The user will be able to Right click on the calendar and have three new options presented to them: Schedule Meeting, Schedule Call and Schedule task
My requirement is not seems to ...
3
votes
0answers
466 views
Can not get rid of autolayout! “Unable to install constraint on view”
I developed half my app with autolayout. Now I want to get rid of it. I only used it in the NIB. I disabled it in interface builder (the check box) but I keep getting this error:
* Terminating app ...
3
votes
0answers
167 views
Emulate USB joystick with Cocoa
Is possible to simulate an USB joystick with Cocoa? In the image, the USB Joystick creates a J1_LEFT key. It's possible with Cocoa?
Even if it's not simple I'll appreciate if there's a solution.
...
3
votes
0answers
204 views
Bundling dylibs, headerpad_max_install_names not working
I have another OSX application problem. I want to bundle in my final application several dylibs, all of them needed by the application and by other dylibs.
I change its references using the ...
3
votes
0answers
299 views
NSFilePresenter -presentedSubitemDidAppearAtURL: method never gets called
I have an object which conforms to NSFilePresenter protocol that represents my document-based application document package. When a new file is created inside the package, either programmatically using ...
3
votes
0answers
97 views
How can I capture sound from WebView on my Cocoa application
I'm writing a Cocoa application which has a WebView. (Xcode 4.4 on Mountain Lion)
I need your help for recording sound/audio from a web page shown in WebView.
I would like to record the audio to the ...
3
votes
0answers
194 views
Mac CoreLocation Services does not ask for permissions
I'm writing a Mac App that needs to use CoreLocation services. The code and location works fine, as long as I manually authenticate the service inside the security preference pane. However the ...
3
votes
0answers
277 views
Forcing an “On demand” VPN in iOS?
Is it possible to force a vpn connection always and not an "on demand"
also on demand requires domains to be added in the configuration file..what if the domains keep changing? why is it designed ...
3
votes
0answers
82 views
Using Apple Services in a sandboxed app
My application is sandboxed. I added an item to the Services menu and when I try to select that menu item in another application, my application is not loaded and the service doesn't work.
The icon ...
3
votes
0answers
123 views
Send mail from cocoa application with attachment
How can I make a new message with attachment from my Cocoa application using Mail client? Can I do it in Lion if my application use sandbox?
3
votes
0answers
222 views
NSColor colorWithPatternImage: and scaling (NSAffineTransform)
So the AppleDocs state that:
The image to use as the pattern for the color object. The image is tiled starting at the bottom of the window. The image is not scaled.
(NSColor Class Reference)
Well, ...
3
votes
0answers
351 views
Is it possible to embed an eBook created with iBooks Author inside an app?
I would like to embed an e-book created with iBooks Author inside an app. Does anybody know if it's possible?
If not, is it possible to add a "link" in my app that opens the e-book?
3
votes
0answers
285 views
Drag & Drop on Dock icon in Cocoa - Messes up file associations
I've implemented a drag-and-drop function in my application. The app let's you open .kext files.
I've used -(void)application:openFiles: as well as having set the Document Types:
All works well, ...
3
votes
0answers
259 views
How do I detect if a bluetooth audio device is connected in Mac OS X?
I'm working on an application that plays audio on OsX. I'm able to list the available output devices with CodeAudio, but I have issues with a bluetooth headset; Even though the device is powered off ...
3
votes
0answers
184 views
Top padding in NSTableView Cell
I want to add some space from top in NSTextFieldCell, I have searched , i found there is way with subclassing. But by this way my touch event for table doesn't work. if i use TextFieldCell's touch ...
3
votes
0answers
221 views
Custom NSCursor does not hold for all applications
I have written a Cocoa program to change the cursor after a button press. Specifically, the cursor includes an image instead of a pointer. I set it using the following commands:
NSImage *tmpImage = ...
3
votes
0answers
481 views
Manual Cocoa Binding not changing Observed KeyPath
I'm changing a cocoa binding programatically. I'm binding a NSTextField's value to the selection of an ArrayController. After I manually change the binding, I'm getting the "not key-value coding ...
3
votes
0answers
281 views
Programmatically scrolling NSTextView without scrollbar
I'm trying to scroll a textview programmatically using the scrollToPoint method. This works fine if the textview has a scrollbar, but if I disable it with setHasVerticalScroller:NO, I get some strange ...
3
votes
0answers
306 views
Adding a service handle for cocoa app
I've read "Service Implementation Guide" from developer.apple.com and a question here from stackoverflow (on how to create a cocoa service), and followed this tutorial: ...
3
votes
0answers
622 views
Put run-loop-based NSThread to sleep for an indeterminate amount of time
I have a dedicated networking thread in my iOS app. The thread's -main method looks like this:
- (void)main
{
@try
{
while (!self.isCancelled)
{
...
3
votes
0answers
183 views
NSTreeController without Core Data, simplest way to drag reorder?
I have a class Field. Each instance contains an NSMutableArray of subfields, which are more Field objects.
For my UI, I'm using an NSTreeController and an NSOutlineView.
I'd like to be able to ...
3
votes
0answers
395 views
Open iCal to a specific CalEvent from Objective-C
10.6, Cocoa only (no Applescript). I have a CalEvent and I want to open it in iCal. How?
I can open iCal URLs with NSWorkspace using URLs of the notation: "ical://" but I can't find documentation ...
3
votes
0answers
681 views
ffmpeg : How to set AVFormatContext from NSData
I'm using FFmpeg library in Objective-C.
I want to set AVFormatContext from NSData which contain imagedata.
I know I can set AVFormatContext with av_open_input_file().
so writing contents of NSData ...
3
votes
0answers
3k views
Core Animation with an NSView and subviews
I've subclassed NSView to create a 'container' view (which I've called TRTransitionView) which is being used to house two subviews. At the click of a button, I want to transition one subview out of ...
3
votes
0answers
477 views
How can I initialize a QTMovie object with certain attributes using writable data?
I'm trying to create an empty QTMovie object that I can add segments to, and then play. This is easy to do with something like:
movie = [[QTMovie alloc] initToWritableData:[NSMutableData ...
2
votes
0answers
42 views
Editable table view bound to NSArrayController bound to NSUserDefaultsController
I have a simple model Foo that represents a user preference and encapsulates an NSString and an NSNumber. I want to store an array of Foo’s in user defaults so that they persist between launches of ...
2
votes
0answers
33 views
Is it possible to clip a child NSWindow to its parent?
I have a borderless NSWindow that I'm adding as a child window to the main window of the app. In a particular mode the child window may lie partially outside the frame of the parent window then it ...
2
votes
0answers
93 views
Fetching X-GM-LABELS with objective-c (Gmail Labels)
My goal is to have a NSArray or NSSet with the labels that are attached to a specific Email in a Gmail account my app. My app mainly uses MailCore that doesn't support this feature so extending it ...
2
votes
0answers
40 views
LSSharedFileListInsertItemURL Not Changing Name
I'm running into an issue with LSSharedFileListInsertItemURL. I'm attempting to add an item to the Finder sidebar which works great. The only thing it doesn't do is change the name of the item in the ...

