What is the right method of declaration if I want to use single object in my viewcontroller? to use a @property i my .m file
@property (nonatomic, strong) UITextView *resolutionText;
@property (nonatomic, strong) AWLResolutionView *myView;
or to declare them in my .h file
@interface
{
@private
UITextView *_resolutionText;
AWLResolutionView *myView;
}