1

好的,那么它目前的情况如何;我有一个名为 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 时,它都已填充。我的问题是在新数据可用时更改数据源。

考虑到新数据来自不同的类,我将如何更新数据源?辛格尔顿?

4

1 回答 1

0

将您的“播放列表”数组公开为视图控制器上的公共属性。实现一个自定义设置器,在设置时提示 tableview 重新加载数据:

@property (strong, nonatomic) NSArray* playlists;

...

@synthesize playlists=_playlists;

...

- (void) setPlaylists: (NSArray*) playlists
{
    _playlists = playlists;

    if ( self.isViewLoaded )
    {
        [self.tableView reloadData];
    }
}
于 2013-07-19T22:50:07.277 回答