UITableViewCell没有显示文本或NSMutable Array没有正确设置

时间:2014-08-16 17:55:23

标签: xcode uitableview nsmutablearray

我正在尝试使用MWFeedParser显示由RSS新闻Feed项目(MWFeedItem.title)标题填充的tableview。日志说feedParser工作正常,没有错误,但是当我运行它时,我得到的是一个空的tableview。

我在一个月前开始编码,非常感谢任何帮助。

//
//  MS2TableViewController.m  

#import "MS2TableViewController.h"
#import "MWFeedItem.h"
#import "MWFeedParser.h"
#import "MWFeedInfo.h"
#import "MS2FeedTableView.h"

@interface MS2TableViewController ()

@property (strong, nonatomic) IBOutlet MS2FeedTableView *FeedTableView;
@property NSMutableArray *FeedItems;
@property MWFeedItem *item;
@end

@implementation MS2TableViewController
@synthesize item;


- (void) loadinitialdata {

}

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {

}
return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.FeedTableView.delegate = self;
self.FeedTableView.dataSource = self;
self.FeedItems = [[NSMutableArray alloc] init];
[self loadinitialdata];


// Create feed parser and pass the URL of the feed
{
    NSURL *feedURL = [NSURL       URLWithString:@"http://images.apple.com/main/rss/hotnews/hotnews.rss"];
feedParser = [[MWFeedParser alloc] initWithFeedURL:feedURL];
feedParser.delegate = self;
feedParser.feedParseType = ParseTypeFull;
feedParser.connectionType = ConnectionTypeSynchronously;
[feedParser parse];
}
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (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 [self.FeedItems count];
}

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

{
 UITableViewCell *cell = [MS2FeedTableView dequeueReusableCellWithIdentifier:@"ListPrototypeCell" forIndexPath:indexPath];

item = [self.FeedItems objectAtIndex:indexPath.row];
cell.textLabel.text = item.title;

while (item != nil) {
    [self.FeedItems addObject:item];
    [self.FeedTableView reloadData];
}
return cell;

}


@end

2 个答案:

答案 0 :(得分:0)

你需要打电话;

[self.tableView reloadData];

完成解析时。

另外,使连接异步,我们通常不想阻止用户界面。

答案 1 :(得分:0)

您已初始化FeedItems

self.FeedItems = [[NSMutableArray alloc] init];

但从未填充过它。