Is there any way to create a property like this C# property in Objective-C?
public int prop { get; protected set;}
Essentially, I want to m
I believe you are looking for the readonly attribute on the @property
@property (readonly) NSInteger prop;
Read more here.