我遇到了UITableView reloadData方法的严重问题。我有一个UIViewController类,WiGiMainViewController里面有一个UITableView和NSMuttableArray。我目前正在AppDelegate中发出网络呼叫,并在下载数据后向WiGiMainViewController发布通知。在我的通知选择器方法reloadWigiList中,我传递的NSArray包含最近下载的项目。然后我用传入的数组初始化WiGiMainViewController的NSMuttableArray并继续在我的UITableView对象上调用reloadData()。我可以从nslog语句中看到,numberOfRowsInSection是在重载但不是cellForRowAtIndexPath时触发的,因此导致UI不能使用新下载的项重新加载UITableView。我已经验证了在主线程上调用reloadData方法,并且数据源委托在IB中设置并以编程方式在WiGiMainViewController的viewDidLoad方法中设置。任何想法为什么我的UITableView,wigiLists没有重新加载数据,特别是没有调用cellForRowAtIndexPath方法?
@interface WiGiMainViewController : UIViewController<FBRequestDelegate,UITableViewDelegate, UITableViewDataSource> {
//setup UI
UITableView *wigiLists;
WiGiAppDelegate *myAppDelegate;
NSMutableArray *itemsList;
}
@property (nonatomic, retain) WiGiAppDelegate *myAppDelegate;
@property (nonatomic, retain) IBOutlet UITableView *wigiLists;
@property (nonatomic, retain) NSMutableArray *itemsList;
-(void) reloadWigiList: (NSNotification*) notification;
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView;
-(NSInteger) tableView: (UITableView*) tableView numberOfRowsInSection:(NSInteger) section;
-(UITableViewCell *) tableView: (UITableView*)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath;
@end
@implementation WiGiMainViewController
@synthesize headerLabel = _headerLabel, userNameLabel = _userNameLabel, facebookPicture = _facebookPicture,
myAppDelegate, wigiLists, itemsList;
- (void)viewDidLoad {
NSLog(@"In viewDidLoad");
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadWigiList:) name:@"wigiItemUpdate" object:nil];
// get appdelicate
self.myAppDelegate = (WiGiAppDelegate*) [[UIApplication sharedApplication] delegate];
self.itemsList = [[NSMutableArray alloc] init];
//setup tableview
self.wigiLists = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
self.wigiLists.delegate = self;
self.wigiLists.dataSource = self;
//set up view
[self.headerLabel setText:self.myAppDelegate.HEADER_TEXT];
//check if user is logged in
if (self.myAppDelegate.isLoggedIn) {
//user is logged in
NSLog(@"HERE");
//get facebook information to populate view
[self retrieveFacebookInfoForUser];
//[self.myAppDelegate retrieveWigiItems];
}else {
//user is not logged in
NSLog(@"user not logged in");
//show login modal
}
//[self.wigiLists reloadData];
[super viewDidLoad];
}
-(void) reloadWigiList: (NSNotification *) notification {
if ([NSThread isMainThread]) {
NSLog(@"main thread");
}else{
NSLog(@"METHOD NOT CALLED ON MAIN THREAD!");
}
NSLog(@"notification recieved:%@", notification.userInfo);
NSLog(@"in reloadwigilists:%@", wigiLists );
NSLog(@"list size:%@", self.itemsList);
NSLog(@"delegate:%@",self.wigiLists.delegate);
NSLog(@"datasource:%@",self.wigiLists.dataSource);
//populate previously empty itemsList
[self.itemsList setArray:notification.userInfo];
NSLog(@"list size:%@", self.itemsList);
[self.wigiLists reloadData];
}
/////////////////////////////////////
// UITableViewDelegate protocols
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
//NSLog(@"numberofsections: %@", [self.itemsList count]);
return 1;
}
-(NSInteger) tableView: (UITableView *)tableView numberOfRowsInSection:(NSInteger) section {
NSLog(@"7t87giuiu%@",self.itemsList);
NSLog(@"numberofrows: %i", [self.itemsList count]);
return [self.itemsList count];
//return 6;
}
答案 0 :(得分:0)
我要做的第一件事是在[self.wigiMainViewController.wigiLists reloadData]上设置一个断点
如果wigiLists tableView在调试器中显示null,那么它可能是一个尚未设置的插座。另外,请确保已设置委托和数据源。
答案 1 :(得分:0)
哇!经过3天的撞击这个问题,这简直太荒谬了。在我的WiGiMainViewController的ViewDidLoad方法中,我正在初始化我的tableview:
self.wigiLists = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
因为我已将我在IB中创建的tableView链接到我的实例wigiLists,所以在ViewDidLoad中分配和初始化覆盖了我在IB中创建并正在显示的tableView的链接。摆脱这条线修复了一切。