也许这是一个有点幼稚的问题,但我真的很想知道细节。我刚刚看到了这段代码:
@implementation SimpleMainViewController
{
SimpleTableViewController *simpleTableViewController;
AboutViewController *aboutViewController;
}
这个和下面的有什么区别?
@interface SimpleMainViewController : UIViewController
@property(nonatomic,retain) SimpleTableViewController *simpleTableViewController;
@property(nonatomic,retain) AboutViewController *aboutViewController;
@implementation SimpleMainViewController
@synthesize simpleTableViewController;
@synthesize aboutViewController;
谢谢转发。