I am working on a personal project and have the following code in a new class that I created:
@property (readonly, getter = isFriend) BOOL friend;
There is nothing wrong with it, and when I create it, it compiles fine, but when we look at this line of code in xcode IDE, it looks like

My question is: why xcode IDEdoes the word seem to be frienda keyword / reserved word?
source
share