Hi I've seen two ways to declare hidden instance variables in the .m file 1)
@interface MyClass() 
{
  //my ivars
}
@end
@implementation MyClass 
 //my implementation
@end
2)
@implementation MyClass
{
 //my ivars
}
 //my implementation
@end
Confused as to the difference between the two, and/or coding conventions when it comes to this. Thanks for any help!
 
    