嗨朋友们我想知道sectionIndexTitlesForTableView Action是有效的 我有以下代码...但我想用A / B / C / D .... Z作为参数调用Web服务..所以我需要知道它是怎么回事? 我的实际需要是产品列表,默认情况下起始字母为A,当点击B然后我想显示产品列表,其中起始字母为B.而且我还想要右侧的A.to..Z表格查看选择信...所以我试过这个,但我不知道如何给动作所以请帮助我..
selectArray = [[NSMutableArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E",nil];
方法是:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return selectedArray;
}
答案 0 :(得分:0)
我解决了我的问题,如下所示
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{
if (title) {
[self webCall:title];
[tableData setArray:nil];
[table reloadData];
}
return 1;
}