0
我subclassed UITableViewController並設置一個UITableView與GroupedStyle作爲它的子視圖。當我在模擬器中運行我的項目時,節標題出現兩次:在GroupedStyle和PlainStyle中。有沒有人有一個想法,爲什麼發生這種情況?我附加了我認爲可能是下面的罪魁禍首的功能。UITableViewStyleGrouped標題爲分組和平原
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
[self setup];
[email protected]"Literature";
UITableView *tableview = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
tableview.scrollEnabled=NO;
tableview.delegate=self;
tableview.dataSource=self;
[self.view addSubview:tableview];
[tableview release];
return self;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
NSInteger inte=2;
switch (section) {
case 0:
inte=2;
break;
case 1:
inte=4;
break;
}
return inte;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 2;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
NSString *temp;
switch (section) {
case 0:
[email protected]"Literature";
break;
case 1:
[email protected]"Online";
break;
}
return temp;
}
你太棒了! :) 非常感謝。現在一切正常。 :) – Julian 2011-04-21 07:44:46
哈哈,很高興它解決了 – 2011-04-21 07:53:28