我的功能[ViewController.tableView reloadData]
不起作用,尽管我@class ViewController
在 .h 文件中实现并#import "ViewController.h"
在 .m 文件中导入。
我究竟做错了什么??
- - 编辑 - -
这是我的 .h 文件:
@class XMLAppDelegate, XMLProductDetailView;
@interface XMLViewController : UITableViewController <UIScrollViewDelegate, XMLImageDownloaderDelegate> {
NSMutableDictionary *imageDownloadsInProgress;
XMLAppDelegate *appDelegate;
XMLProductDetailView *productDetailView;
IBOutlet UISearchBar *searchBar;
IBOutlet UITableView *tableView;
}
@property (nonatomic, retain) NSMutableDictionary *imageDownloadsInProgress;
@property (nonatomic, retain) IBOutlet UISearchBar *searchBar;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
- (void)imageDidLoad:(NSIndexPath *)indexPath;
@end
但请注意:当我包含时IBOutlet UITableView *tableView;
,它隐藏了一个实例变量。