Alex

4,672
Reputation
347 views

Registered User

Name Alex
Member for 1 year
Seen 21 hours ago
Website
Location Des Moines, IA, United States, Earth, Solar System
Age 26
Nov
12
answered How exactly is NSPrintInfo’s sharedPrintInfo shared?
Nov
12
accepted Copy from one NSTableView to another (With Core Data Bindings)
Nov
12
answered Copy from one NSTableView to another (With Core Data Bindings)
Nov
11
answered Changing the Sorting in an NSFetchedResultsController on the fly
Nov
11
accepted Return Key Text Field? - iPhone SDK
Nov
11
answered Return Key Text Field? - iPhone SDK
Nov
10
accepted Design pattern for Core Data iPhone App
Nov
10
awarded  Yearling
Nov
9
answered Is there a bulk update operation for all entities in Core Data?
Nov
2
accepted How do you create a custom themed NSButton?
Oct
29
comment What should I be reading for intermediate Cocoa programming instruction?
I upvoted, but I also want to specifically say that this book would be fantastic for someone who wants to understand Cocoa's internals a bit better. Many of the "patterns" are simply in-depth discussions of the way Objective-C handles certain programming problems.
Oct
29
comment How to call a web service using Objective-C on the iPhone
It is a perfectly reasonable question, it has just been asked and answered before.
Oct
29
comment How do you create a custom themed NSButton?
This is true. Any more, the only time you'd really need to subclass NSButton is if you were creating the controls programmatically.
Oct
29
answered Any tips or best practices for adding a new item to a history while maintaining a maximum total number of items?
Oct
28
accepted Managed Object Context in Tab Bar View
Oct
28
answered How do you create a custom themed NSButton?
Oct
28
accepted Storing identical data efficiently in a Core Data data model
Oct
27
comment Shake visual effect on iPhone (NOT shaking the device)
You could also create an animation and apply it to the view's CALayer. This would let you use, for example, a CAKeyframeAnimation which would let you fine-tune the animation. For an animation like this, you'll probably need that level of flexibility.
Oct
27
answered Managed Object Context in Tab Bar View
Oct
27
answered Faulting a CoreData relationship when fetching the main entity
Oct
27
accepted CoreData: Find minimum of calculated property
Oct
26
revised CoreData: Find minimum of calculated property
edited tags
Oct
26
answered CoreData: Find minimum of calculated property
Oct
26
accepted CoreDate Deletion rules and many-to-many relationships
Oct
24
comment Will using a custom category to extend UIButton get my app rejected?
Sorry, but that's not correct. If you use a private API, you will almost certainly get rejected. Apple rejects such applications specifically because private APIs are fragile. While it's true that some applications that use private APIs get accepted anyway, you're far better off keeping away from those methods.
Oct
24
answered webview in core animation layer
Oct
24
answered Design pattern for Core Data iPhone App
Oct
23
accepted Unexplained leaks using CFDictionaryRef and ABMutableMultiValueRef
Oct
23
answered Unexplained leaks using CFDictionaryRef and ABMutableMultiValueRef
Oct
23
answered Storing identical data efficiently in a Core Data data model
Oct
23
answered CoreDate Deletion rules and many-to-many relationships
Oct
22
accepted What would you do instead of using NSViewController to be compatible with 10.4?
Oct
22
accepted Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?
Oct
22
answered Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?
Oct
22
answered What would you do instead of using NSViewController to be compatible with 10.4?
Oct
22
comment Setting up relationships while importing core data?
Correct. The context only matters while the objects are in memory. Once they've been saved to the persistent store, they can be fetched into any context.
Oct
21
accepted What are AppDelegates in Objective-C?
Oct
21
answered Setting up relationships while importing core data?
Oct
21
answered What are AppDelegates in Objective-C?
Oct
21
accepted How do I delete an entity when removing it from an array controller?
Oct
21
answered How do I delete an entity when removing it from an array controller?
Oct
21
accepted NSArray atomfeed and categories
Oct
20
answered NSArray atomfeed and categories
Oct
20
accepted Beginners Cocoa Binding Question
Oct
20
accepted Cocoa-Bindings : Update NSObjectController manually?
Oct
19
answered Finding duplicates in an NSMutableArray
Oct
19
comment How do I insert a welcome screen to my Navigation-Based Iphone App?
I don't think he means a Default.png image. I think he means an initial view that the user sees when the app first starts.
Oct
19
answered Cocoa-Bindings : Update NSObjectController manually?
Oct
17
accepted Managing inverse relationships without CoreData
Oct
15
comment NSMutableDictionary does not get added into NSMutableArray
Yep, it's a memory leak. If you do [[item copy] autorelease] you don't retain that extra reference.