Why does the xcode IDE think `friend` is a reserved-word
问题 I've been working on a personal project and have the below code in a new class that I have created: @property (readonly, getter = isFriend) BOOL friend; There doesn't seem to be anything wrong with it and when I build it, it works compiles absolutely fine but when we look at this line of code in the xcode IDE it looks like My question is why does the xcode IDE seem to think that the word friend is a keyword/reserved-word? 回答1: Presumably because friend is a reserved word in C++. See