NSApplication is the central class in Apple's AppKit framework.

learn more… | top users | synonyms

0
votes
0answers
18 views

Show Dock icon, but no standard Main Menu

Is it possible to have a Dock icon for the application, but no main menu in the menu bar? Fiddling around with LSUIElement and LSUIBackgroundOnly doesn't lead to my goal. Setting [NSApp ...
0
votes
1answer
23 views

applicationDidBecomeActive doesn't fire in OSX application

In my app i have the following setup : // .h @interface MyDocument : NSPersistentDocument <NSApplicationDelegate> { ... } // .m @implementation MyDocument -(void) ...
0
votes
0answers
16 views

Is it possible to make keyboard focus on nswindow without making app active?

I'm writing simple chat that works in floating mode. But I can't make it work with fullscreen Power Point. When I click on NSTextField it makes app active and Power Point exits full screen mode :( – ...
1
vote
1answer
52 views

can't call beginSheet after OK is pressed in NSSavePanel?

My cocoa program has a save feature, which when user selected the saving destination, I'll have to bring up another NSPanel, to display some sort of status (ie. how long it will take to finished ...
0
votes
1answer
62 views

NSApplication.SharedApplication.Terminate doesn't actually terminate my application after unhandled exception

I am developing a simple application for OSX with MonoMac. When my application experiences unhandled exceptions, I catch them with: AppDomain.CurrentDomain.UnhandledException += (sender, e) => ...
0
votes
1answer
67 views

Detecting Full screen applications on mac

I am developing a simple application in Cocoa, and I want to detect whether any application is running in full screen mode. Is this possible? Through runningApplications API, I can get various ...
3
votes
2answers
204 views

Is NSApp terminate:id deprecated?

I have been searching for how to terminate my application programmatically. I found in many topics people using NSApp terminate:id. In Xcode terminate:id is crossed. Is this method deprecated ? ...
0
votes
2answers
75 views

webview with configurable URL

I am new to objective c programming and working with cocoa application. Here is my static URL webview based application. AppDelegate.h contains @interface AppDelegate : NSObject ...
0
votes
3answers
57 views

How to disable the auto-reopening of the last document?

How to disable the auto-reopening of the last document ? When I execute my application, it calls the method readFromData. But, the problem is that between my version 1 and my version 2, I ...
2
votes
1answer
274 views

OS X application in full screen mode on two monitor setup

Basically I would like to run OS X application in full screen mode on two monitors. There is no specific layout I would like to accomplish, I would just like to zoom in application to use whole two ...
0
votes
0answers
29 views

Block window/application focus unless someone clicks on the dock icon

I have a windows application that operates in the background, but randomly it would appear and be focused. There's a sheet that opens up which causes the dock icon to bounce. But the window will also ...
0
votes
2answers
28 views

One Cocoa app notified when another cocoa app terminated

Suppose there are two cocoa apps APP1 and APP2. I want APP2 to be notified when APP1 terminates. I want some callback function registered with APP2 which will be called as soon as APP1 terminates. How ...
0
votes
1answer
80 views

How to know when a Cocoa app is about to quit?

I have a NSDocument based application. I'd like to know when the application is about to quit to validate some things. I'd hoped there might be a method such as a applicationWillQuit, but looking ...
0
votes
1answer
52 views

What is the best way to make another app active in Cocoa?

I have an app that generates key commands in another app. I used to do it in Applescript studio but I have rewritten in Obj-C. Now I can't figure out how to make the other active in the foreground so ...
2
votes
1answer
137 views

How to make a Status Bar Application catch 'applicationDidResignActive:' with other Status Bar Apps?

Right now I'm developing a Status Bar Application and I need to know when the app loses focus, every time. So I am currently using applicationDidResignActive: for that but that's not catching when I ...
0
votes
1answer
76 views

Can I get the actual Menu Bar from an NSRunningApplication?

I'm trying to access the menu of an NSRunningApplication object in OS X. it has an ownsMenuBar @property, however no instance of an actual menu bar (which makes sense). I'm curious, instead, how to ...
1
vote
2answers
2k views

How to use WebView on xcode 4.5.1

I'm new to programming and I need to embed a website in my application (which is blank; I only want to embed the website right now). I've been searching for it since 5:00 PM (It's now 9:30 PM) and I ...
0
votes
1answer
274 views

how to get windows of NSRunningApplication

I want to get the window list for a running application. I can get the running application list from [[NSWorkspace sharedWorkspace] runningApplications], but the window list is only available on ...
1
vote
1answer
145 views

How to automatically create new NSDocument if no documents are restored?

EDIT: It seems like the issue below only occurs (rather, fails to occur... :) when I run the from within Xcode (I'm on 4.4), rather than from Finder. Is this an Xcode bug, or am I missing something? ...
2
votes
1answer
151 views

NSWorkspace launchApplication:showIcon:autolaunch: - how to check autolaunch flag?

I have implemented a login item as I was recommended in this post. In the helper app I launch the main app using NSWorkspace method launchApplication:showIcon:autolaunch:, sending YES to autolaunch ...
2
votes
0answers
132 views

How to disable the Help key and context sensitive help mode in OSX, especially with Qt

I have a cross platform Qt application that's running into some trouble in OSX. There's a feature that OSX has that I didn't even know existed - the 'Help' key. My MBP doesn't have one, and neither ...
0
votes
0answers
74 views

Cocoa - TransformProcessType + badgeLabel

I'm trying to hide/show a dock icon based on a checkbox. I have found some code here, that works, however I am also trying to use a badge icon (when the dock icon is visible). If I call: ...
0
votes
1answer
142 views

Cocoa hide menubar without dock

is it possible to hide menubar without hidding dock in cocoa? like Launchpad do. I have tried [[NSApplication sharedApplication] setPresentationOptions:0x04]; but unfortunately this it doesn't ...
1
vote
2answers
482 views

Show NSWindow from separate nib (not modal)

How to do it? I simply want to load a window and show it in front of the main window. NSWindowController* controller = [[NSWindowController alloc] initWithWindowNibName: @"MyWindow"]; NSWindow* ...
2
votes
1answer
215 views

Subclass NSApplication in MonoMac

I need to subclass NSApplication in MonoMac to override the sendEvent (SendEvent in C# terms) method of NSApplication in order to receive media key events (Play, Pause, Next, Prev on Macbooks) as ...
3
votes
1answer
140 views

What's the number in XCode's console in square brackets? [duplicate]

Possible Duplicate: iphone nslog output format 2012-07-25 16:25:08:491 MyProject[2488:403] App finished launching. This might be an easy question, but what are those numbers?
1
vote
0answers
112 views

Recreating NSApplication.Main in monomac

I'm trying to recreate nsapplication.main in my app. I want to make my app do a number of things my way rather than automatically doing things I don't want. I guess I'm a code control freak. Sadly, ...
0
votes
1answer
153 views

How to know if the user force quit app?

In my mac application I am supporting full screen by changing system resolution of the device. And I am resetting back to old resolution if the user switches from full screen to windowed mode or if ...
1
vote
1answer
133 views

about panel in menubar application is not frontmost when activated

I have an application that lives in the menubar, without a main menu or dock icon. I have a button that triggers [NSApp orderFrontStandardAboutPanel:sender];. When that button is clicked, sometimes, ...
1
vote
1answer
176 views

modal window not closing

I am running a custom NSWindowController as modal window. First I show it like this: ProgressWindow *pWin = [[ProgressWindow alloc] initWithWindowNibName:@"ProgressWindow" andXmlContent:nil]; ...
1
vote
2answers
996 views

NSApplicationSupportDirectory invalid CFStringRef

I'm trying to store a file in the NSApplicationSupportDirectory, since i have a preloaded folder in my app, which i want to add files to once the app have been initialized. I'm trying to NSLog the ...
1
vote
1answer
292 views

How to handle Cocoa application termination properly?

So, here's my case : I'm developing a NON-standard document-based application and I want to handle the scenario of aborting the termination when there still are unsaved changes in any of the ...
5
votes
1answer
199 views

objc_getProtocol() returns NULL for `NSApplicationDelegate"?

I'm trying to use the objc_getProtocol() function to get a reference to the struct representing the NSApplicationDelegate protocol: Protocol *protocol = objc_getProtocol("NSApplicationDelegate"); ...
0
votes
1answer
327 views

Positioning a Sheet after using beginSheet:modalForWindow:?

I want to display a window as a sheet, which is perfectly running with the following code : [NSApp beginSheet:mySheet modalForWindow:myWindow modalDelegate:nil didEndSelector:NULL ...
0
votes
1answer
107 views

Relaunching an already launched application

I have created an application for Mac OS X, and I have a desktop shortcut for it (created using ln -s). Now I want to add a feature such that whenever this shortcut is double clicked, with the ...
1
vote
0answers
174 views

How to open a modal window inside a modal window

This code is called when a button is pressed in a modal window. The current window was made modal by using [NSApp runModalForWindow:[self window]] inside -(void)showWindow:(id)sender method. To open ...
1
vote
1answer
252 views

Fullscreen app in OS X with multiple windows?

I want to make a fullscreen app that shows the background of the new space, in addition to having normal window behavior. Basically, when the user goes full screen, I want every NSWindow in the app to ...
0
votes
0answers
247 views

NSApplication delegate: Determining the return from hibernate mode: - didWakeUp?

I'm currently wondering if it is possible, just like on iOS the somehow have a delegate called once OSX returns from hibernate mode, e.g. on opening the MacBook from sleeping? I had a look at the ...
1
vote
1answer
409 views

cocoa beginSheet: didEndSelector throwing an error

I'm loading a sheet into my main .xib, the sheet is a panel and I have no problem displaying the sheet or closing it but when I close it I am getting an error message: 2012-02-21 11:10:12.142 ...
0
votes
0answers
277 views

applicationDidFinishLaunching and applicationShouldTerminate

I have a Cocoa App (fairly complicated with OpenGL calls and external IO and serial line ...). A while back I made some modifications and now my applicationDidFinishLaunching is not called anymore! So ...
1
vote
0answers
155 views

Minimize-in-place - Do I need a custom framework

I want to create a system wide minimize-in-place feature that occurs when double-clicking the title bar of any visible window in layer 0. It seems that this would be a really simple feature to ...
0
votes
1answer
271 views

NSApplicationPresentationOptions doesn't work with FIREBREATH

I am trying to customize user experience from the plugin I am working on, my goal is to provide a kiosk style using the options available in COCOA NSApplication, the code is like following: // Hide ...
1
vote
0answers
434 views

Cocoa NSApplication not active but receiving mouse events

I'm having a weird issue where I click away from my window. It resigns main and key. Then I click back to it and the view that was clicked on does not respond to the mouse click. But the second ...
0
votes
1answer
171 views

Creating status item - icon shows up, menu doesn't

In a document-based project I am trying to create a status menu. I have a singleton class that builds the status bar, and I am initiating it from an application delegate, as you can see. When I run ...
1
vote
1answer
183 views

Initiating systemStatusBar doesn't work in applicationDidFinishLaunching

My project is document-based, and the code to load a status menu is only executed if I put it under awakeFromNib. #import "StatusMenuAppDelegate.h" @implementation StatusMenuAppDelegate @synthesize ...
2
votes
1answer
358 views

Aren't I allowed to override -sendEvent: in my NSApplication subclass?

In my mac os x app, I subclass NSApplication and override it's -sendEvent: method. Apple complains : The app includes 'OBJC_IVAR_$_NSApplication._delegate' from the framework ...
3
votes
2answers
575 views

Start Cocoa app without showing the main window

I have a simple Cocoa app with a single NSWindow where I can enter some credentials and after the submission the app starts an another process. In case the credentials were entered once and cached I ...
1
vote
0answers
190 views

Minimize all window in mac but every time one window is active

I have added a code to minimize all the running application on NSStatusItem, its a very simple code [[NSWorkspace sharedWorkspace] hideOtherApplications]; But when i run this application then one ...
0
votes
1answer
307 views

Not displaying Mouse cursor

I am developing Mac desktop application, where i am capturing the screen using CGImageRef screenShot = CGWindowListCreateImage(CGRectInfinite, kCGWindowListOptionAll, kCGNullWindowID, ...
1
vote
1answer
176 views

Fire up Cocoa GUI from C++ loop and also passing references

I have a problem... maybe a couple :) My team has written a client in C++ using Boost and CMake to take care of the platform dependent stuff. Works like a charm! ...sometimes :) Anyway the graphical ...

1 2