UITableView
を使用してグループ化されたデータを入力しようとしていNSMutableArray
ます。配列内の各要素に独自のセクションを持たせたいです。すなわち:1つのセクションごとに1つの要素(1つの行)。
これは私がこれまでに書いた私のコードです。
#import "MailViewController.h"
@interface MailViewController ()
@end
@implementation MailViewController
NSMutableArray *mailboxes;
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
mailboxes = [[NSMutableArray alloc] initWithObjects:@"Inbox", @"Drafts", @"Sent Items", nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return mailboxes.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [mailboxes objectAtIndex:indexPath.row];
return cell;
}
@end
現在、これはどのように見えるかです。
上記の方法でこれを取得するにはどうすればよいですか?(最初のセクション:受信トレイ、2番目のセクション:ドラフト、3番目のセクション:送信済みアイテムなど)近づきましたが、まだ完全ではありません。
ありがとうございました。