我有一个数组。它填充在一个名为“SampleDataDAO”的类中。
我需要的:
在名为“MainMenu”的第二个类中,我需要保留此代码:
- (void)viewDidLoad
{
[super viewDidLoad];
daoDS = [[SampleDataDAO alloc] init];
self.ds = daoDS.PopulateDataSource;
}
在名为“HView”的第三个类中,我需要使用数组“ds”(NSMutableArray)。但我需要使用它已经从第二类填充,返回元素的数量:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return ds.count;
}
感谢您的帮助!