問題是,這兩個部分有時是空的,所以我不知道如何防止當他們變空時崩潰。 self.globalSections是由本地兩個NSMutableArrays存儲的全局NSMutableArrays,它們是我的UITableView的第一部分和第二部分。iOS的titleForHeaderInSection崩潰
這裏是我的代碼:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
if (mySearchBar.text.length > 0)
{
if(section == 0)
{
//below are if statements I have tried, but not working...
//NSUInteger globalSectionsOne = [self.globalSections indexOfObject:[self.globalSections objectAtIndex:0]];
//if ([[self.globalSections objectAtIndex:0]count] >=1)
// if (globalSectionsOne!=NSNotFound)
//if (globalSectionsOne >= 1)
//{
NSLog(@"sections counts");
NSUInteger firstSectionCount = [[self.globalSections objectAtIndex:0]count];
NSString *firstSectionString = [NSString stringWithFormat:@"%i Exact match(es)", firstSectionCount];
return firstSectionString;
//}
//else {return @"";}
}
else if (section == 1)
{
//another same code, except the objectAtIndex is at 1 instead of 0.
請點我在正確的方向,謝謝。
編輯:
我已經修改了這個方法:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
if (mySearchBar.text.length > 0 && [self.globalSections count] == 2)
{
return 2;
}
else
{
return 1;
}
//return 1;
}
這還好吧?
更新與崩潰日誌你的問題。 – 0x8badf00d 2012-01-04 20:40:59