如何从 NSArray 填充 UITableView?

Posted

技术标签:

【中文标题】如何从 NSArray 填充 UITableView?【英文标题】:How to populate a UITableView from NSArray? 【发布时间】:2014-08-29 12:28:23 【问题描述】:

对于这个问题,我已经看到了几个例子,但在我的例子中,有很大的不同。我有一个类LTModel,它是另一个类LTChallenge的容器:

这里是LTModel

#import <Foundation/Foundation.h>
#import "LTChallenge.h"

@interface LTModel : NSObject

@property   NSMutableArray  *challenges;
-(int) numberOfChallenges;
-(void) addChallenge:(NSString *) challengeName;
-(LTChallenge*) challengeAtIndex:(NSInteger) index;
@end

这里是LTChallenge

@interface LTChallenge : NSObject

@property   NSString *name;
@property   NSMutableArray *times;
- (instancetype)init:(NSString *)challengeName;
- (void) addObject:(LTTime *) time;
@end

现在在我的UITableViewController 中,我正试图用挑战的名称填满我的桌子。首先,我赋予它们价值:

- (void)viewDidLoad

    [super viewDidLoad];   
    //Instantiate
    lapTimerModel = [[LTModel alloc] init];
    [lapTimerModel addChallenge:@"Clap 20 times"];
    [lapTimerModel addChallenge:@"Say the alphabet"];
    [lapTimerModel addChallenge:@"100 Meter Sprint Challenge"];
    [lapTimerModel addChallenge:@"Read the ios al spec challenge"];

最后,我在这里填写了我需要挑战名称的表格:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

    // Return the number of sections.
    return 1;


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section


    // Return the number of rows in the section.
    return [lapTimerModel numberOfChallenges];



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    if(cell == nil) 
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    
    cell.textLabel.text = [lapTimerModel challengeAtIndex]; //???? Maybe in this line I need challenges array in LTModel, I used this but did not work

// cell.textLabel.text = [lapTimerModel.challenges objectAtIndex:indexPath.row];
    return cell;

如何在我用问号标记的行中使用objectAtIndex:indexPath.row?感谢任何建议。

编辑

这是challengeAtIndex的实现

-(LTChallenge*) challengeAtIndex : (NSInteger) index

    return [_challenges objectAtIndex:index];

【问题讨论】:

【参考方案1】:

Challenge 不是 NSString。你需要将 NSString 分配给 cell.textLabel.text:

LTChallenge *challenge = [lapTimerModel challengeAtIndex:indexpath.row];
cell.textLabel.text = challenge.name;

【讨论】:

感谢您的回答。我添加了您的代码,但仍然无法正常工作。正如我所怀疑的那样,我已经添加了 challengeAtIndex 的实现。如果有什么问题,请告诉我? @Bernard,似乎没问题。错误可能在其他地方。您是否尝试在 -tableView:cellForRowAtIndexPath: 中设置断点并检查是否获得正确的挑战对象?

以上是关于如何从 NSArray 填充 UITableView?的主要内容,如果未能解决你的问题,请参考以下文章

使用 NSMenuItems 从 NSArray 填充 NSMenu - 需要替代建议

如何在 Objective-C 中从 mysql 数据库中填充 NSArray?

从 UITableView 中删除顶部填充

使用 NSArray 填充 collectionView

从 NSArray 对象设置 UIPickerView

使用 NSArray 中的 UIButtons 自动填充滚动视图