You are not allowed to actually have setters/properties on a category...

A trick is using associative objects , like:

...
-(void) setPipe:(id<NSObject>)pipe {
    // use better key...
    objc_setAssociatedObject(self, @"AGpipeCatKey", pipe, OBJC_ASSOCIATION_ASSIGN);
}

-(id<NSObject>)pipe {
     return objc_getAssociatedObject(self, @"AGpipeCatKey"); // use better key...
}

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira