In general, I do my interfaces like this:
@interface Gui2UtilityCell : NSObject{
NSString* myString;
}
@property(nonatomic,strong) NSString* mystring;
@end
In this case, the NSString* myString;
is it Mandatory ? If yes, what the difference between the previous code and this one:
@interface Gui2UtilityCell : NSObject
@property(nonatomic,strong) NSString* mystring;
@end