0
votes
0answers
26 views

Setting custom OS X Lion full-screen icon

Is there a way to hide full screen icon or replace it with my own in OS X Lion app? I am making windows full screen enabled by calling [NSApp mainWindow] setCollectionBehavior: ...
0
votes
1answer
35 views

Cocoa application contains no menu bars, according to AppleScript

I am creating a mac app that needs to start dictation (OSX 10.8) by itself. Because there is no way to initiate dictation "directly" the best way to do this is through the menu bar "Edit"/"Start ...
0
votes
1answer
26 views

Strange Error When including Objective C header in Command Line App

I am creating a simple command line app that uses Core Foundation, so from what I understand, that means I can use Objective-C. The problem is, as soon as I include my Objective-C header, I get 19 ...
1
vote
2answers
29 views

OSX Cocoa - How to test for changes in multiple NSTextFields

I am trying to test for changes in some NSTextFields. I'm using: - (void)controlTextDidEndEditing:(NSNotification *)notification { if ([notification object] == field1) NSLog(@"field1: ...
0
votes
1answer
23 views

Modifying CocoaGL example

I am trying to use the CocoaGL example provided by Apple to start off with a openGL application. I decided to this one because it already implements all user interactions for camera rotation, zoom, ...
1
vote
1answer
37 views

Accepting TextClipping with NSImageView Drop Box

If you drag and drop a selection of text onto a folder, you will get a file with an extension of textClipping. TextEdit's document window accepts a text selection. Many applications do accept ...
0
votes
1answer
43 views

Sandboxed Applications, Where to Save Files Without User Interaction

I'm a bit confused about where the application should send a bunch of files. Let me suppose that an application accepts a number of images with NSOpenPanel at a time from the user. The application ...
0
votes
1answer
48 views

NSTextField will not show

I've tried many of the answers that I've found here. I must be doing something dumb and could use help. in .h: @property (strong) IBOutlet NSTextField *title; in .m: title = [[NSTextField alloc] ...
0
votes
0answers
31 views

Enabling Toolbar Items Back After 'stopModal'

I have an application that is designed to perform a relatively lengthy task. While it does, it will open a separate progress window (NSWindowContoller) like the following. // AppDelegate.m ...
0
votes
1answer
41 views

Closing Window and Releasing NSWindowController

I have a relatively-lengthy task. So I bring up a separate window (NSWindowController) from AppDelegate to show progress. It goes like //AppDelegate.m if (self.progresswindow == nil) { ...
0
votes
1answer
15 views

Getting Safari-Style File Path

If you open Safari's Preferences and navigate to General, it has a drop-down menu next to the label 'Save downloaded files to.' How do you get this Safari-style volume name or whatever? I've done ...
0
votes
1answer
27 views

What is the equivalent to [NSPatternColor CGColor] in OS X 10.7?

I have the following code that works fine in OS X 10.8: [viewLayer setBackgroundColor:[NSColor colorWithPatternImage:[NSImage imageNamed:@"editbackground.png"]].CGColor]; But when I used it on OS X ...
1
vote
1answer
107 views

MacOSX 10.8 , xcode 4.6.1 error Cocoa: “Color type user defined runtime attributes on OS X versions prior to 10.7”

I got a warning in Xcode 4.6.1/Mac OSX 10.8 when I try to open an Xib file which used to work well in Xcode 3.x/ Mac OSX 10.7 "The file "MQMPlugIn.xib" has a dependency on an Interface Builder 3 ...
0
votes
1answer
29 views

NSTableView Drawing Count

I have two tables (NSTableView) on a window. Well, the number is irrelevant. Anyway, the source of the first table (tableView1) is NSMutableArray with NSMutableDictionary. And I have the following ...
0
votes
1answer
14 views

NSTask File Path Converting Into ShellPath?

I have a Mac (not iOS) application. I want to run a shell command 'find' after the user selects a folder with NSOpenPanel. The following is what I have. NSString *path = [url path]; NSString ...
1
vote
0answers
36 views

NSImage Image Size With Multiple Layers

I have a Mac (not iOS) application that allows the user to select one or more images with NSOpenPanel. What I have trouble with is how to get correct dimensions for multiple-layered images. If an ...
0
votes
1answer
38 views

Reading Multiple Dragged-n-Dropped Files

I have a small window inside the main xib (MainMenu.xib) with an NSImageView control for an OS X application. This view control has an NSImageView subclass that is supposed to accept files that the ...
0
votes
1answer
31 views

Disabling Window Behind

These days, I develop iPad applications. Since I've run out of subjects to work on, I'm working on a simple OS X application to see how far I can go. Anyway, what I want to do is show a Preferences ...
0
votes
0answers
29 views

How can application handle crashes in FindKeyForPString (com.apple.ApplicationServices.ATS)

We have a connection manager application built for Mac. Lately we saw a large spike in crashes esp with the users that are on Mac 10.8.2 and 10.8.3. Between the two it is more prominent on 10.8.2. ...
0
votes
0answers
49 views

NSUserNotification userInfo not being sent

I'm using NSUserNotification and I'm trying to attach a userInfo dictionary. My notification is sent successfully. I can click the notification and my app is sent the correct delegate message, ...
8
votes
1answer
103 views

Prevent iCloud window from opening on OSX 10.8 app launch

I have written an OSX app that uses iCloud document storage. Whenever I open it in Mountain Lion (not on Lion), an iCloud window opens that looks like the following: Is there a way to prevent this ...
1
vote
0answers
86 views

Cocoa / NSUserNotificationCenter get all NSUserNotification notifications

How can I be notified whenever any application delivers or activates an NSUserNotification? Neither could I determine anything that is sent via NSDistributedNotificationCenter, nor could I find a ...
9
votes
1answer
360 views

Detect hardware headphone presses in mac

This question is concerning the code from this question: Detect headphone button presses in OS X Their answer was marked correct, however I couldn't get their code to work (this may be because of my ...
-1
votes
1answer
86 views

iOS style buttons on the mac [closed]

I'm trying to recreate the look here: (Except normally these buttons would not be disabled). How do I recreate this iOS-style look in an objective-C application?
1
vote
0answers
38 views

How to display application logs in Console.app from a sandbox application

In sandbox, app writes log files to location in its own container like (~/Library/Containers/com.apple.Notes/Data/Library/Logs/Notes). I need the console app to show my application logs by default. ...
1
vote
0answers
113 views

How to programmatically enter target display mode?

I've attached a MBA to an iMac using a thunderbolt cable. Pressing CMD+F2 on the iMac enables the target display mode to use the iMac as display for the MBA. Does anyone have information how to ...
0
votes
0answers
68 views

How to create Listener in objective C like HttpListners

I want to create an mac app which listens to some url(example SOME_HOST_NAME:0001/) that is whenever the request is made to that url i have to perform some task and also send back the response. How ...
0
votes
0answers
75 views

Detecting Mountain Lion from within the iOS Simulator

Is there an Objective-C mechanism to detect that you are running on Mountain Lion from within the iOS simulator? While in the iOS simulator I need to have a different code path execute on Mountain ...
0
votes
1answer
54 views

Detect Wallpaper applications running on os x?

I am trying to detect if any Wallpaper type application is running on system and try to close them. For example, Mechanical Clock 3D Lite for 10.8 is one of the apps which run as wallpaper for ...
6
votes
2answers
320 views

Is there an alternative to CoreBluetooth for OSX

Just checking to see if anyone has seen an alternative to using CoreBluetooth for bluetooth classic and bluetooth LE connections
1
vote
0answers
100 views

Customising an authentication dialog in OSX with SFAuthorizationPluginView

I'm currently developing a custom dialog to be displayed via an Authorization Plugin, based upon the Apple example code of "NameAndPassword", which subclasses the SFAuthorizationPluginView ...
12
votes
1answer
207 views

Crash of Garbage Collection Work Queue if dylib is loaded

We are porting an app from 10.6 to 10.8. I am looking at dylib we load in app. I am facing very unusual crash in Garbage Collection Work Queue with following message. malloc: Thread::suspend(): ...
5
votes
4answers
142 views

How to monitor a process on OS X?

I am looking for a way to monitor the state of one of my applications on OS X. There's a number of components that I need to monitor such as the status of various communication channels. If they go ...
4
votes
1answer
386 views

WebKit on 10.8: How to programmatically set the value of an input[type=file] field?

Setup: Mac OS X 10.8.2 Normal Cocoa app which links against OS-provided version of WebKit framework. Specifically, the contents of: ...
2
votes
1answer
142 views

How to search Contacts (address book) for company records - Mountain Lion

How could you search through the contacts (aka address book) in Mountain Lion, using Objective-C, to find all company records (i.e. kABShowAsCompany) with the same company name as the current person ...
0
votes
0answers
103 views

Can't get correct directory path in Finder (Mountain Lion)

Have two methods to get and create directory path in iOS: - (NSString *)documentsDirectory { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); ...
0
votes
0answers
32 views

Possible bug: panel not appearing in a status bar application launched at startup

I fear that is a mountain lion bug. The steps to reproduce it are: Create a status bar application; Add a menu item that triggers a method; In this method, show a window with orderFront: ...
0
votes
1answer
52 views

Menu status applications doubts [duplicate]

Possible Duplicate: How to create a Menubar application for Mac I have implemented a feed with Cocoa, for Mac OS X. It's a status application, displaying only the menu.Now basically I got ...
1
vote
1answer
203 views

Xcode Localization Not Working?

I am trying to add a new localization for my app for Mac OS X (Mountain Lion). I added the appropriate localizations to the project info panel and made all the .xib files localized. I also added and ...
0
votes
1answer
71 views

autosavesInPlace causes New Document save to fail

I have a NSPersistentDocument based app which fails to save a new document when autosavesInPlace is set to return YES , return NO and the problem disappears. I create a new document Make some ...
0
votes
1answer
52 views

Status application: sometimes panels are missing, multithreading possible issue

I have a status application, it's long to post it all so I'll describe it and post only part of the code: In the xib file there are two objects: AboutController and PreferencesController; The ...
0
votes
2answers
147 views

Centered items in NSCollectionView

I'm developing a simple gallery for an application for OS X, by default, the items of a NSCollectionView are in left, How I get its items centered in its width? like this image:
0
votes
1answer
160 views

Cocoa and OpenGL: failed to draw cube

I am making a simple app in which I should draw a cube with GLUT. Since I've studied OpenGL with plain C, I have difficulty to understand what functions should I call to initialize the context, since ...
0
votes
2answers
229 views

Can't set the title of the back bar button item of a view controller

I am training myself with an application that has a navigation controller, and the user can switch between two view controllers. The root view controller class is called ViewController, and that's how ...
1
vote
1answer
205 views

OSX preferences file - removePersistentDomainForName has different functionality in 10.8?

This code works for one of our developers on 10.7 but not for me on 10.8 working = it deletes the preferences .plist file for the bundle. The dev on 10.7 also has a lockfile whereas I do not. It's ...
3
votes
1answer
342 views

How to set up OSX screen saver configuration sheet?

I'm working on a screen saver for OSX (Mountain Lion) and I'm having trouble setting up the configuration sheet (so when the user clicks "Screen Saver Options..." within System Preferences, my options ...
0
votes
1answer
98 views

Core Data NSTableView do not match

I'm having an issue with Core Data. I have an Array Controller setup that links the data to an NSTableView. I have a function that runs code every few seconds and in it I display the list of files ...
0
votes
0answers
68 views

CATextLayer perfect text fit

I have read different post here to get rid of the vertical space in the CATextLayer. No chance! Every time some space is left at the top of the characters (as you can see in the screenshot with ...
3
votes
1answer
166 views

Notification after user becomes idle on OS X?

What's the best way of detecting when a user has been idle for X amount of time, and then detect when the user becomes immediately active? I know there's NSWorkspace which provides will/did ...
1
vote
1answer
95 views

How to prevent NSTextField or NSTextView from automatically selecting the first item when using AutoComplete

I am trying to implement a simple NSTextField with autocomplete that behaves more like a JQuery UI autocomplete (http://jqueryui.com/autocomplete/) than the default behavior of NSSearchField. The ...

1 2 3