我开发标签栏应用程序,每个标签视图都是一个表格视图。所以我的问题是在第一个标签中我开发了一个普通的表视图,但在第二个标签中我需要一个分组的视图。我在xib中将样式更改为分组,并在方法中执行此操作:
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:UITableViewStyleGrouped];
if (self) {
}
return self;
}
但是模拟器仍然显示了一个简单的表格视图。当我尝试在新应用程序中编写相同的代码时 - 一切正常。任何人都可以帮助解释它为什么不起作用吗?
整个代码:
- (void)viewDidLoad
{
[super viewDidLoad];
NSArray *row1 = [[NSArray alloc] initWithObjects:@"aaa1", @"aaa2", @"aaa3", nil];
NSArray *row2 = [[NSArray alloc] initWithObjects:@"bbb1", @"bbb2", @"bbb3", nil];
NSArray *row3 = [[NSArray alloc] initWithObjects:@"ccc1", @"ccc2", @"ccc3", nil];
NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:
row1, @"a",
row2, @"b",
row3, @"c", nil];
self.list = dict;
NSArray *array = [[list allKeys] sortedArrayUsingSelector:@selector(compare:)];
self.keys = array;
[row1 release];
[row2 release];
[row3 release];
[dict release];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSString *key = [keys objectAtIndex:section];
NSArray *nameSection = [list objectForKey:key];
return [nameSection count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger section = [indexPath section];
NSUInteger row = [indexPath row];
NSString *key = [self.keys objectAtIndex:section];
NSArray *nameSection = [self.list objectForKey:key];
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [nameSection objectAtIndex:row];
return cell;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
NSString *key = [self.keys objectAtIndex:section];
return key;
}
实际上没有,我在XIB文件中更改属性检查器似乎工作。有人可以帮忙吗?
答案 0 :(得分:1)
确保您的课程为UITableViewController
,因为您正在使用:
- (id)initWithStyle:(UITableViewStyle)style
@interface MyViewController : UITableViewController
{
NSString * something;
}
@end
如果不你的rootViewController,你可以随时确保该表按以下方式分组:
MyViewController * mvc = [[MyViewController alloc] initWithStyle:UITableViewStyleGrouped];