Search Results

4
votes

Best way to make NSRunLoop wait for a flag to be set?

In general, if you are processing events yourself in a loop, you're Doing It Wrong. It can cause a ton of messy problems, in my experience. If you want to run modally -- for example, showin …
2
votes

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

In general, -rightMouseDown: should get called automatically, but I've seen situations where it isn't -- these may be patched in Leopard. But right now, in -mouseDown: I check whether the c …
3
votes

Is it possible to design NSCell subclasses in Interface Builder?

As Ken says, NSCells and NSViews are different, and you can only lay out NSView hierarchies in NIB, not NSCells (which don't have any explicit hierarchy). On the other hand, there's nothing …
2
votes

Do I need to release xib resources?

The [anOutlet release], anOutlet = nil; Part is completely superfluous if you've written setView: correctly. …
11
votes

App crashes whenever accessing NSManagedObjects in a certain method

The following code is shorter, more efficient, easier to read, and doesn't have the six or so memory leaks of your first block: NSFetchRequest *request = [[NSFetchRequest alloc] ini …
0
votes

Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request

Looks a lot like you found a bug in CoreData. You can verify for sure by turning on SQL logging - I'm guessing turning on both options generates slightly invalid SQL. The option you want to …
2
votes

Declaring an object at class level, problems. iPhone Objective-C

Don't create socket in +initailize, that's way early. Add some debug logging (NSLog()) to your code in viewDidLoad, and log the socket to see if it's getting created. Then put a breakpoint …