好的,那么它目前的情况如何;我有一个名为 PlaylistController 的 UIViewController(带有一个用于整洁的自定义类)。这个控制器实现了 UITableViewDelegate 和 UITableViewDataSource 协议,并且相当粗略地用 NSMutableArray 中的一些基本信息填充了 UITableView:
播放列表控制器.h:
@interface PlaylistController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
@public NSMutableArray* _playlists;
@public NSMutableArray* _tracks;
}
@property (nonatomic, strong) IBOutlet UITableView *tableView;
播放列表控制器.m:
- (void)viewDidLoad
{
[super viewDidLoad];
tableView.delegate = self;
tableView.dataSource = self;
_playlists = [[NSMutableArray alloc] initWithObjects:@"Heyy", @"You ok?", nil];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)aTableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section {
return [_playlists count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CellIdentifier";
// Dequeue or create a cell of the appropriate type.
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
cell.textLabel.text = [NSString stringWithFormat:@"%@", [_playlists objectAtIndex:indexPath.row]];
return cell;
}
效果很好,当我单击相应的选项卡以显示 UIViewController 时,它都已填充。我的问题是在新数据可用时更改数据源。
考虑到新数据来自不同的类,我将如何更新数据源?辛格尔顿?