我想在xcode中創建一個應用程序。我做了一個名爲myApp.m
和.h
xcode與IBAction
類在我.m
我的代碼
- (void)loadApp
AlarmItem *item1 = [[[AlarmItem alloc] initWithTitle:@"TEST2"] autorelease];
NSMutableArray *items = [NSMutableArray arrayWithObjects:item1, nil];
RootViewController *rootController = (RootViewController *) [navigationController.viewControllers objectAtIndex:0];
rootController.items = items;
,並在我的RootViewController的這些行我有這個方法:
- (IBAction)RefreshMyApp:(id)sender {
MyApp *myApp2 = [[[MyAppalloc] init] autorelease];
[myApp2 loadData];
}
我是什麼試圖做的是從myApp類調用該方法並顯示在tableView中,但我總是得到一個空單元格。
任何幫助表示讚賞。
myApp只是無效的方法,我可以稱它加載。 – user993074
我需要的是從該方法重新加載數據,以便它可以顯示在我的單元格中。 – user993074
您的寫作如下:MyApp * myApp2 = [[[MyApp alloc] init] autorelease]; MyApp子類是什麼類? – jbat100