gpt4 book ai didi

ios - 如何在我的 popoverController 中显示我的 tableview 和数据

转载 作者:行者123 更新时间:2023-11-28 17:34:07 24 4
gpt4 key购买 nike

现在我已经创建了一个带有 tableview 的 popoverController,我还创建了将在 tableview 中显示的数据。然而, table 总是空的。P.S.(委托(delegate)和数据源已设置,委托(delegate)方法也已调用)

在tableview中创建数据的方法:

-(void) createCategoryData
{
NSMutableArray *categoriesForJiangSu;
NSMutableArray *categoriesForZheJiang;

categorySections=[[NSMutableArray alloc]initWithObjects:@"JiangSu",@"ZheJiang", nil];
categoriesForJiangSu=[[NSMutableArray alloc]init];
categoriesForZheJiang=[[NSMutableArray alloc]init];

[categoriesForJiangSu addObject:[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"package 1",@"name",
@"JiangSu.jpg",@"picture",nil]];
[categoriesForJiangSu addObject:[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"package 2",@"name",
@"JiangSu.jpg",@"picture",nil]];
[categoriesForZheJiang addObject:[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"package 1",@"name",
@"ZheJiang.jpg",@"picture",nil]];
[categoriesForZheJiang addObject:[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"package 2",@"name",
@"ZheJiang.jpg",@"picture",nil]];

categoryData=[[NSMutableArray alloc]initWithObjects:categoriesForJiangSu,categoriesForZheJiang, nil];
[categoriesForJiangSu release];
[categoriesForZheJiang release];


}

这里是委托(delegate)方法:

-(NSInteger)numberOfSections
{
return [categorySections count];
}

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

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection: (NSInteger)section
{
return [categorySections objectAtIndex:section];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier=@"Cell";
UITableViewCell *cell=(UITableViewCell*)[tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell==nil)
{
cell=[[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier] autorelease];
}
[[cell imageView] setImage:[UIImage imageNamed:[[[categoryData
objectAtIndex:indexPath.section] objectAtIndex:indexPath.row]
objectForKey:@"picture"]]];

[[cell textLabel] setText:[[[categoryData objectAtIndex:indexPath.section]
objectAtIndex:indexPath.row] objectForKey:@"name"]];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
return cell;
}

popoverController 的 viewDidLoad 方法:

- (void)viewDidLoad
{
[self createCategoryData];
self.contentSizeForViewInPopover=CGSizeMake(200.0, 320.0);
[super viewDidLoad];
}

以及 mainViewController 中的 showPopover 方法:

-(IBAction)showPopover:(id)sender
{
if(popoverController==nil)
{
popoverController=[[UIPopoverController alloc]
initWithContentViewController:popoverContentViewController];
[popoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
popoverController.delegate=self;
}
}

popoverContentViewController 是 popoverController 的名称。

最佳答案

作为初学者,如果您不清楚 xib 概念,请不要使用 xib。最好在没有 xib 的情况下完成您的工作,正如 CodaFi 建议的那样。将您的 TableView 添加到您传递给 popoverController 的 Controller View 。

关于ios - 如何在我的 popoverController 中显示我的 tableview 和数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10359917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com