xmpp を使用してチャット アプリケーションを開発しています。表に gmail と Facebook の連絡先を取得しました。しかし、私のテーブルには3つのセクションが含まれています
-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)sectionIndex
{
NSArray *sections = [[self fetchedResultsController] sections];
if (sectionIndex < [sections count])
{
id <NSFetchedResultsSectionInfo> sectionInfo = [sections objectAtIndex:sectionIndex];
int section = [sectionInfo.name intValue];
switch (section)
{
case 0 : return @"Available";
case 1 : return @"Away";
default : return @"Offline";
}
}
return @"";
}
ここで私の問題は、gmail と Facebook の連絡先を区別する方法です。