Search Results

0
votes

Why aren’t my breakpoints working in Xcode?

There appears to be 3 states for the breakpoints in Xcode. If you click on them they'll go through the different settings. Dark blue is enabled, grayed out is disabled and I've seen a pail blue som …
3
votes

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

I've seen times where this can happen when you are trying to access a object that you didn't retain properly so its either not pointing to a valid copy of your object or its pointing to an object o …
5
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

When you use code completion on a method and it has multiple arguments, using CTRL + / to move to the next argument you need to fill in. …
0
votes

How can replace the string [Foo alloc]<cursor> with [[Foo alloc]<cursor>] in XCode?

Textmate will auto-back fill ['s for you. You can also build your xcode project from inside it as well as do thousands of other interesting thing …