What does an underscore signify in the name of a member variable in Objective-C? [duplicate]

Basically, it doesn’t mean anything to the compiler. It’s just a coding practice used on private instance variables. Your code isn’t going to break if you don’t use it.

Leave a Comment