0

日をセクションとして含む Dynamic UITableView を作成したい (sat,sun,mon,...)

助けてください!前もって感謝します!

ここに私のコードがありますが、セクションを作成するために何を書くべきかわかりません:

日.h

#import <UIKit/UIKit.h>

@interface Day : UIViewController 

@property (nonatomic, strong) NSMutableArray *monthTitle;

@end

日.m

@synthesize monthTitle;

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super init];
if (self) {
   monthTitle = [[NSMutableArray alloc] init];
}
return self;

}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
[super viewDidLoad];


}

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [self.monthTitle count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView 
                         dequeueReusableCellWithIdentifier:@"Cell"];



return cell;

}



 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle   
forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
    [self.monthTitle removeObjectAtIndex:indexPath.row];
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]  
 withRowAnimation:UITableViewRowAnimationFade];
}   
}




#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
/*
 <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib   
name#>" bundle:nil];
 // ...
 // Pass the selected object to the new view controller.
 [self.navigationController pushViewController:detailViewController animated:YES];
 */
}

@end
4

3 に答える 3

14

をとUIViewControllerとして設定していることを確認してください。まず、次の2つのプロトコルを実装する必要があります。delegatedataSourceUITableView

@interface Day : UIViewController <UITableViewDataSource, UITableViewDelegate>

@property (nonatomic, strong) NSMutableArray *monthTitle;

@end

delegate次に、とdataSourceUITableViewをに割り当てる必要がありますUIViewController

を右クリックして、ビューの下部にあるatアイコンにおよびアウトレットをUITableViewドラッグします。delegatedataSourceUIViewController

ここに画像の説明を入力してください

これで、をおよびとしてUITableView使用するように設定されました。その後、関数を適切に設定して、データを入力します。UIViewControllerdelegatedataSourceUITableView

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [self.monthTitle count];
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [self.monthTitle objectAtIndex:section];
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;  //Return the number of sections you want in each row
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *cellIdentifier = @"Whatever You Put For Cell Identifier On Interface Builder";
    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    //Configure the cell however you wish

    return cell;
}

ここで、各セクションに必要なタイトルを保持するをself.monthTitleとして設定したとすると、このコードは、各セクションに1行のタイトルがあるのと同じ数のセクションと、その特定のセクションに関連するセクションヘッダーを提供します。のインデックス。したがって、すべての曜日が保持されている場合は、次のようになります。NSArrayNSStringUITableViewself.monthTitleself.monthTitleself.monthTitleUITableView

ここに画像の説明を入力してください

于 2012-07-27T13:28:40.623 に答える
6

次のメソッドは、セクションの数を返します。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}

したがって、3 つのセクションが必要な場合は、3 を返す必要があります。

その後、このメソッドを使用してセクションに名前を付けることができます:

 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

        if(section == 0)
            return @"name section 0";
        else if(section == 1){
            return @"name section 1";
        }else
            return @"name section 2";
         //etc...
    }
于 2012-07-26T12:17:45.387 に答える
5

配列または辞書を使用して動的構造を作成する

_sections = [NSMutableArray array];
            [_sections addObject:@"section1"];
            [_sections addObject:@"section2"];

    _rows = [NSMutableArray array];
    NSMutableArray* section1 = [NSMutableArray array];
    [section1 addObject:@"row1"];
    [section1 addObject:@"row2"];
    NSMutableArray* section2 = [NSMutableArray array];
    [section1 addObject:@"row1"];
    [section1 addObject:@"row2"];
    [_rows addObject:section1];
    [_rows addObject:section2];

    #pragma mark - Table view data source

    -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return [_sections count];
    }

    -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
    {
        return [_sections objectAtIndex:section];
    }

    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [[_rows objectAtIndex:section] count];
    }

    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:nil];
        if(!cell)
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:nil];
        cell.textLabel.text = [[_rows objectAtIndex:[indexPath section]] objectAtIndex:[indexPath row]];
        return cell;
    }
于 2012-07-26T12:43:01.010 に答える