Now that Xcode4 is publicly available I\'m moving this question out of Apple\'s secret dev forum:
Can someone explain why the code generated in the following procedu
Generating those accessors was really handy, not sure why they've changed that.
I use this snippets as an alternative:
- (void)add<#entity#>sObject:(<#entity#> *)value;
- (void)remove<#entity#>sObject:(<#entity#> *)value;
- (void)add<#entity#>s:(NSSet *)value;
- (void)remove<#entity#>s:(NSSet *)value;