uiviewcontroller内でuitableviewを使用するにはどうすればよいですか? 以下は、私がやろうとしていることの例です (ただし、これはUITableview
私のストーリーボードにあるだけです):
ヘッダーにデリゲートとデータ ソースを追加する必要があることがわかりました。
//MyViewController.h
@interface MyViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
実装ファイルに、必要なメソッドを追加しました。
//MyViewController.m
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cellForRowAtIndexPath");
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FileCell"];
NSLog(@"cellForRowAtIndexPath");
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSArray *fileListAct = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:nil];
cell.textLabel.text = [NSString stringWithFormat:@"%@",[fileListAct objectAtIndex:indexPath.row]];
return cell;
}
、delegate
、datasource
およびUITableView
はすべて、ストーリーボードに接続されています。
TableView に指示したコンテンツをロードすることができません。それは常に空白になります。cellForRowAtIndexPath メソッドで指定したコンテンツで TableView が満たされないのはなぜですか? ここで何が欠けていますか?