我試圖使用NSMutableArray
填充分組UITableView
。我希望數組中的每個元素都有自己的部分。即:每個部分一個元素(一行)。填充分組的UITableView
這是我寫到目前爲止的代碼。
#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
目前這是它的樣子。
我怎樣才能得到這個我上面描述的方式? (第一部分:收件箱,第二部分:草稿,第三部分:發送物品等)我已經接近但尚未完成。
謝謝。
上面的截圖描繪了,你想要不要段,你是在談論節嗎?因爲章節確實有他們自己的委託方法來定義他們的標題。 – 2013-03-08 07:15:43