Search Results

8
votes
12answers
4k views

Why aren’t my breakpoints working in Xcode?

I have breakpoints set but Xcode appears to ignore them. …
1
vote
5answers
1k views

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

During the load of my cocoa application, my program crashes with the messsage EXC_BAD_ACCESS. The stack trace is not helpful. Any clues to how I can find the problem? …
0
votes
2answers
657 views

Can you detect a ctrl-click (context menu) request in the mouseDown event?

In my cross-platform architecture, I would like to act on a context menu click (right button click) during a mouse click event. In Cocoa, can you detect that the user either Ctrl-Clicked or double …
0
votes
3answers
312 views

How do you find the amount of free space on a mounted volume using Cocoa?

I am using the following code to determine free space on a volume. The folder was provided using NSOpenPanel. The item selected was a mounted volume and the path returned is \Volumes\Name …
9
votes

Why aren’t my breakpoints working in Xcode?

Go to the Xcode Debugging preferences. Make sure that "Load Symbols lazily" is NOT selected. …
-3
votes

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

This is one possible reason. There is a IBOutlet object that isn't being initialized and a message is being invoked on nil. The stack trace might look like this: #0 0x90a594c7 …
0
votes

Why aren’t my breakpoints working in Xcode?

I believe that a project can also become corrupted in regards to breakpoints. I have a project, for example, that WILL NOT break on any breakpoints that it remembers from the previous session. I …
1
vote

How do you find the amount of free space on a mounted volume using Cocoa?

The code provided IS the best way in Cocoa to determine the free space on a volume. Just make sure that the path provided to [NSFileManagerObj fileSystemAttributesAtPath] includes the full path of …