1

我在更改 TableView 上的颜色和字体时遇到了一些麻烦,我已将其分成 4 个部分,并带有名称等,我似乎无法让它工作我不确定我做错了什么?

- (NSString *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section     {

NSString *sectionName = nil;

switch(section)
{
    case 0:
        sectionName = [NSString stringWithString:@"Date"];
        break;
    case 1:
        sectionName = [NSString stringWithString:@"Gig"];
        break;
    case 2:
        sectionName = [NSString stringWithString:@"City"];
        break;
    case 3:
        sectionName = [NSString stringWithString:@"Country"];
        break;
}

UILabel *sectionHeader = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 40)]   autorelease];
sectionHeader.backgroundColor = [UIColor clearColor];
sectionHeader.font = [UIFont boldSystemFontOfSize:18];
sectionHeader.textColor = [UIColor whiteColor];
sectionHeader.text = sectionName;

return sectionName;
}
4

3 回答 3

4

您应该返回视图而不是字符串...

这就是你要返回的

return sectionName;

这就是你应该返回的..

return sectionHeader;
于 2012-06-27T08:23:20.890 回答
2
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

是在 UITableView 的标题中呈现视图的正确方法。在这里你可以返回你的 UILabel 对象。

您试图返回一个 NSString 对象而不是 UILabel。方法的返回类型也是错误的。它应该是 UIView 类型。

http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITableViewDelegate_Protocol/Reference/Reference.html

于 2012-06-27T08:23:42.027 回答
1
-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section{

NSString *sectionName = nil;
switch(section)
{
    case 0:
    sectionName = [NSString stringWithString:@"Date"];
    break;
case 1:
    sectionName = [NSString stringWithString:@"Gig"];
    break;
case 2:
    sectionName = [NSString stringWithString:@"City"];
    break;
case 3:
    sectionName = [NSString stringWithString:@"Country"];
    break;
}

UILabel *sectionHeader = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 40)]   autorelease];
sectionHeader.backgroundColor = [UIColor clearColor];
sectionHeader.font = [UIFont boldSystemFontOfSize:18];
sectionHeader.textColor = [UIColor whiteColor];
sectionHeader.text = sectionName;
return sectionHeader;

}

该代码向您展示了如何实现 TableViewCOntroller 的 viewForHeaderInSection 委托方法,您需要实现该方法来完成您需要的工作。您的代码返回 NSString,它应该返回 UIView。

于 2012-06-27T08:22:41.310 回答