我有一个应用程序(导航控制器),其中第二个控制器是表视图控制器。我能够通过 segue 发送我需要的数据,但无法以编程方式更新 tableview 中的条目。
我是IOS的新手。
这是我的头文件
#import <UIKit/UIKit.h>
@interface HCIResultListViewController : UITableViewController
@property (strong,nonatomic) NSMutableDictionary *resultList;
@property (strong, nonatomic) IBOutlet UITableView *tableListView;
@end
这是我的实现文件。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 0;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
// Return the number of rows in the section.
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"HelloCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"Hello";
// Configure the cell...
return cell;
}
谁能告诉我如何使用 tableview 和控制器?
我确实浏览了几个文档和示例,但真的无法理解