我已經創建了一個基於導航的應用程序。在那,我創建了MyTableViewController
使用uiviewcontroller.class
。如何在創建實例時使用構造方法以及如何調用它?
#import "RootViewController.h"
#import "MyTableViewController.h"
@implementation RootViewController
- (void)viewDidLoad
{
[super viewDidLoad];
MyTableViewController *tableViewController = [[MyTableViewController alloc] init];
}
@end
#import "MyTableViewController.h"
@implementation MyTableViewController
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"sedfsdsd");
}
@end
我不想在實例創建時顯示視圖。我想調用構造函數方法。我不知道該怎麼做。請幫助我。
好的我不想在創建實例時顯示視圖...我想調用構造函數方法..我不知道如何擁有它...請幫助我 – user198725878 2011-05-28 06:16:53