0
votes
1answer
18 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 ...
0
votes
1answer
21 views

My Mac app is crashing on OS X 10.7 (from tester reports). How can I test on 10.7 when my dev machines are 10.8?

I have a Mac app that I built on the latest Xcode on an OS X 10.8 machine. Some of our beta testers are getting crashes on 10.7. Here in the office we don't have any machines with 10.7 on them. On ...
1
vote
0answers
15 views

Can't find running applications when executing as root on OS X 10.7

I have a privileged helper tool running as root (blessed by SMJobBless) and I'm trying to obtain the process id of Finder. The code below works fine in OS X 10.8, but returns an empty array for ...
0
votes
0answers
19 views

Fluid swipe and scrolling 10.7 style

I'm looking to add two finger "fluid swiping" to my app. Anyone who has used the week view in the Calendar app that comes with OSX will have seen what I'm trying to do. I have a scroll view, and I ...
0
votes
2answers
48 views

NSMenuItem toggle Bold Font style

I have to implement NSMenuItem such a way that selected NSMenuItem should have Bold Text , this is what i have done, @implementation NSMenuItem (Font) -(void)setBoldStyle:(bool)bBold{ NSString* ...
2
votes
2answers
76 views

NSMatrix hidden on 10.7 Lion

I have two NSMatrix radio controls in different places in my app. I am developing on 10.8, using the 10.8 SDK and targeting 10.7. The matrixes work perfectly on my development computer, but when I ...
1
vote
1answer
137 views

OSX sending/receiving data via USB/Serial

I need to write a cocoa app (lion and mountain lion) to transfer (send/receive) data with a serial device attached to the USB port. I have spent some time studying the osx documentation (i/o kit) and ...
0
votes
2answers
95 views

Cocoa: NSUInteger and UInt32 both defined as 32 bit unsigned integer. So why the warnings?

Looking in the headers, I can see that for the 64-bit system I'm compiling for, both NSUInteger and UInt32 are defined as 32 bit unsigned integers, so why is Xcode claiming a loss in precision in a ...
0
votes
1answer
41 views

Open a file in a shared folder in cocoa

I am trying to open a pdf file residing in a windows shared folder from my cocoa application. I am trying to use the NSWorkSpace openFile method to open the file and I am passing a path similar to ...
0
votes
1answer
39 views

OS X: update draw during fullscreen animation

I am currently programmatically enabling fullscreen in an OS X 10.7+ app, via the techniques described in this apple guide, that uses OpenGL to renderer its views. Is it possible to enable per-frame ...
0
votes
0answers
87 views

Encoding NSViewController for Lion's user interface resume feature

Any idea what are the best practices for archiving an NSViewController inside a window for resume (user interface preservation) purposes? I've tried archiving it in the window controller's ...
0
votes
2answers
84 views

NSPopover and NSButton controle

I created a StatusBar application. It uses custom views and utilizes NSPopover to show some controls. Im familiar with the NSTextfield focus problem. This does not cause any pain. However I have a ...
2
votes
2answers
193 views

How do I animate fadeIn fadeOut effect in NSTextField when changing its text?

I am trying to write a category for NSTextField which will add a new method setAnimatedStringValue. This method is supposed to nicely fade-out the current text, then set the new text and then fade ...
2
votes
1answer
60 views

Is it worth saying YES to autosavesInPlace in a read-only document class?

I'm writing an app that is a viewer only—no creation, no editing, no saving. Obviously, then, there will be no autosaving, but is there anything else that returning YES from autosavesInPlace changes ...
11
votes
2answers
386 views

OSX - disabling system-wide touch gestures

I need to programmatically disable/suppress system-wide touch gestures on Mac OS. I'm referring to gestures such as the 4-finger swipe between spaces, etc. I've looked to EventTap but that doesn't ...
0
votes
1answer
31 views

Memory leak error message from auval tool

I am validating an audio unit in auval (apple's audiounitvalidationtool), it returns: -------------------------------------------------- AU VALIDATION SUCCEEDED. ...
0
votes
0answers
68 views

NSPopupButton doesn't show list when being inside a nsmenuitem

I'm a beginner at Cocoa. I'm writing a status bar application. Inside the NSMenu, the first menuitem's view is a custom view, which containing a nspopupbutton. The pop up button is bound to an array ...
0
votes
0answers
81 views

Waiting for completion handler when opening NSDocuments

I am implemented NSApplicationDelegate application:openFile: as: -(BOOL) application:(NSApplication*) sender openFile:(NSString*)path { NSDocumentController* dc = [NSDocumentController ...
0
votes
1answer
98 views

focus on accessible UI element in cocoa programmatically

I have a toolbar with a button and an NSView with a titled box. When the window opens and Voice Over is on, I want the focus to be on the titled box. Currently it's on the toolbar button, because it's ...
1
vote
2answers
52 views

How do I get the size of a font in cocoa

I have a NSString with it's attributes (a dictionary). I could get a NSAttributedString with this. I need to know what's the size of the string.With the font I can only get the height, using capHeight ...
0
votes
0answers
46 views

Send a Lion Resume message to other apps

I'm totally new to OSX programming so I'm not sure if this is possible. I'm playing around with the Lion Application Resume APIs. I'd like my application to send a message to another application to ...
0
votes
0answers
70 views

NSDragOperation is not working properly

I have main view and a NSTableView subView in it. I need to drag some folders into NSTableView or anywhere inside the main view. I have implemented NSDraggingDestination protocols in the mainView. ...
1
vote
1answer
347 views

EXC_BAD_INSTRUCTION in Lion but not in Mountain Lion

I'm getting the following EXC_BAD_INSTRUCTION exception when opening a window in Lion but the app appears to work fine in Mountain Lion. What can be the problem? Process:         MyApp [595] Path:    ...
0
votes
1answer
70 views

Receive new value from edited cell in View-Based Table View

I have an View-Based Table View with some standard NSTableCellView data rows, which I fill from my data source. User can edit text field of a cell. Please, explain me, how to receive the new value, ...
3
votes
1answer
339 views

Mountain Lion Privileged Helper Daemon status

I'm building an app for 10.8+ which among other things has to patch files. Because of this functionality I have created a "PrivilegedHelperTool" and installed as KeepLive = YES RunAtLoad = YES (so ...
4
votes
1answer
131 views

Image doesn't want to drag

I am following the 23th chapter of Aaron's Cocoa programming for Mac OS X. I have to drag a letter from a view and copy it in another application like text edit. This is the portion of code with which ...
1
vote
0answers
165 views

Server unavailable alert pop up in MAC OS Lion

In my application, I am presenting a screen which displays the computer name. But when I tested the application, in one of the machine I am getting an error saying There was a problem connecting ...
0
votes
0answers
31 views

lock screen not working on 10.7

This "system/Library/CoreServices/Menu Extras/User.menu/Contents/Resources/CGSession -suspend" working on 10.6 and 10.8, but not on 10.7???(works from terminal) when i tried to launch thru my app. ...
0
votes
1answer
112 views

How to get LIon's window resize NSCursor?

The NSCusor documentation lists a number of resize cursors, but they are all of the variety used to resize panes inside of a window: ...
1
vote
0answers
74 views

Unblock user interaction in fileWrapperOfType

I would like to implement asynchronous saving in my NSDocument. According to the documentation, I need to return YES in canAsynchronouslyWriteToURL:ofType:forSaveOperation: and then call ...
3
votes
2answers
702 views

Symbol not found: _OBJC_CLASS_$_NSObject

I'm getting the following error when running a Mac app in OS X 10.7.3 (Lion): Dyld Error Message:   Symbol not found: _OBJC_CLASS_$_NSObject   Referenced from: ...
0
votes
0answers
81 views

Changing the Save (saveDocument:) menu text

In our Cocoa NSDocument-based application we have a Save (saveDocument:) button on a context menu, but we want the text of the menu-item to change depending on the circumstances of the NSDocument, in ...
4
votes
1answer
560 views

How to assign application to all desktops (spaces) of Mac OS X Lion using Objective C?

I am trying to create an Application on Mac OS X Lion which requires application to be assigned to All Desktops (Spaces). This can be manually done by Right clicking on application's dock icon and ...
0
votes
0answers
84 views

How to distribute Mac OS App with specific UUID?

I have created a sample mac os application (mac os 10.7 with Xcode 4.3.2) and its work fine.Now i want to give a initial version to our client with a specific Mac UUID.So i created a developer ...
0
votes
1answer
106 views

Get the outlets inside a NSMatrix

I have a NSMatrix which contains 5 cells, each cell contains an image well. I want to avoid binding each image well, so I just have an IBOutlet which is a NSMatrix.How can I take the content of each ...
0
votes
1answer
88 views

NSWindow going behind main window

I have a main window for my application. When a button is clicked I present another window (smaller one). This is shown above the main window by default. From the smaller window I have a option to ...
1
vote
0answers
150 views

Strange behavior and memory leaks with NSProgressIndicator and NSOpenPanel in Lion and Mountain Lion

So I know this may be a hard one to answer but I am experiencing some strange behavior with Mountain and Lion and I was hoping this might ring a bell with some Cocoa gurus. Inside our app we have a ...
1
vote
0answers
381 views

Flexible height with dynamic layout in Interface Builder

I'm new to the Dynamic Layout concept introduced in Cocoa applications with Lion 10.7. I've been playing with some examples and almost all works as I expect. But, there is one thing I've been unable ...
2
votes
1answer
406 views

NSKeyedArchiver: distinguishing between different instances of the same class

I'm implementing support for Lion's "Resume" feature in my OS X app. I have a custom subclass of NSViewController in which I implemented the method encodeRestorableStateWithCoder: as: ...
0
votes
1answer
108 views

Focus ring on NSPopupButton doesn't appear on pressing tab

I have a couple of NSPopupButtons on my view and they are defined as a newKeyView after one of the text fields. The problem is that somehow they are not getting the focus ring when pressing the tab ...
2
votes
2answers
244 views

NSSavePanel nil inside the completion handler block

I'm trying to save the content of a view into a PDF file.The code you see is inside a class which inherits from NSView: - (IBAction) savePDF: (id) sender { __block NSSavePanel* ...
1
vote
0answers
44 views

Deploy Lion app to 10.6 exception

I have an OS X App That builds on Lion (with latest sdk) but deploy set to 10.6 (to be able run on Snow Leo). ARC enabled. I want's to run app on Show Leopard. Application works well on Lion. But ...
0
votes
1answer
147 views

NSXMLParser with HTML Containing Javascript and “bad” characters

I am using NSXMLParser to parse HTML from web sites. Testing site is under my control but in operation sites will not be. Problem is when parser encounters javascript which contains "bad" ...
0
votes
1answer
173 views

Custom focus ring for NSTextView

I'm am able to draw a custom focus ring by subclassing the scrollView. My question is, how do I test if the textVeiw (that is inside the scrollView) has focus, in order to change the focus ring.
1
vote
1answer
495 views

NSWindowController's window released immediately

I'm trying to open a window using a NSWindowController in my app delegate. I created a basic NSWindowController with an associated NIB and try to show the window that way: @implementation ...
1
vote
0answers
171 views

CGDisplayCopyAllDisplayModes() does not give a complete list of available modes

I've been trying to write a simple app that resets display resolution for an iMac and a connected projector to 1024x768, 85 Hz and 32bit color. When the projector is directly connected to the mac ...
0
votes
2answers
338 views

Get a list of unmountable drives using Cocoa

I would like to obtain a list of drives that are unmountable/ejectable using Cocoa/Objective-C under OS X. I was hoping that NSWorkspace getFileSystemInfoForPath::::: would help me: NSArray* ...
5
votes
2answers
164 views

Cocoa apis reporting incorrect values for free space, what should I use?

Does anyone know what apis Apple is using for it's Get Info panel to determine free space in Lion? All of the code I have tried to get the same Available Space that Apple is reporting is failing, even ...
1
vote
2answers
72 views

How do I add Leopard and Snow Leopard support to a Lion Cocoa App?

I have developed a Cocoa App on Lion and now I would like to add compatibility with Leopard and Snow Leopard. I tried to set the development target to 10.5 but it still has crash problems on Leopard ...
0
votes
1answer
273 views

Multiple Windows in a non-Document-based Cocoa app

I am building a Non-Document-based cocoa app that I want to behave as follows: The main window contains a Table View with a list of items (backed by Core Data). Each item should open in its own ...

1 2 3 4 5 7