#import "ViewController.h"
@interface ViewController ()
{
NSString *string;
}
@end
@implementation ViewController{
NSString *string;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
What are the differences between these two statements? Which is better?