最初のビューにリストを表示しようとしているので、これを first.h に追加しました:
#import <UIKit/UIKit.h>
@interface argospineFirstViewController : UIViewController
<UITableViewDelegate,UITableViewDataSource>
{
NSMutableArray *Journals;
IBOutlet UITableView *myTableView;
}
@property (nonatomic,retain) NSMutableArray *Journals;
@property (nonatomic, retain) UITableView *myTableView;
@end
そして、これを first.m に追加しました:
@implementation argospineFirstViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
Journals=[NSMutableArray arrayWithObjects:@"journal1",@"journal2",nil];
}
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier];
}
cell.text=[Journals objectAtIndex:indexPath.row];
return cell;
}
私は初心者なので、どのような接続を確立する必要があるのか よくわかりません。また、最初のビューにテーブルビューがドロップされたストーリーボードを使用しています。デリゲートに追加する必要があるものはありますか? 何か助けはありますか?お時間をいただきありがとうございます