I'm trying to create NSString Category but the app crashes when trying to access getters/setters.
#import <Foundation/Foundation.h>
#import <AddressBook/AddressBook.h>
@interface NSString (MyCat)
@property (assign, nonatomic) ABRecordRef personRef;
- (void)setPersonRef:(ABRecordRef)personRef;
- (ABRecordRef)personRef;
@end
Can anyone point out the problem?