Search Results

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

How to remove CoreData’s objects from memory?

You can tell the managedObjectContext to retain or not retain objects (in addition to the ones you retain) with: [managedObjectContext setRetainsRegisteredObjects:YES]; …
4
votes

core data or sqlite or plist files

Since you can't control the internal keys in CoreData, and because CoreData requires a VERY specific schema to work at all, AND you don't want to mess with CoreData's SQL directly (it has all kinds …
1
vote

Need help with many-to-many relationships in core data for iPhone

If you want to call a method like "-addCatagoryObject:" on your NSManagedObject subclass, you have to have the code for that method in your actual .m file - it is NOT generated at runtime. …
1
vote

Xcode 3.2 documentation, missing symbol definitions like CGPoint?

If you're option-clicking I believe only symbols in the frameworks you are linking to in your current Xcode project are looked-up. Is your current project linked against AppKit and/or CoreGraphics? …
6
votes

Does CoreData on iPhone support IN predicates?

I believe Alex is right that you have to use an NSArray, although obviously it'd be nicer if NSSet were accepted here, since order isn't that important (although it could conceivably affect how qui …
1
vote

How can I add the alpha channel of image A to the alpha channel of image B?

"clemahieu" is right -- You don't have to worry about premultiplied alpha in this case, because you're doing high-level operations, and the actual pixel format is a low-level detail. If you …
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 …