113

UITableView在 Interface Builder 中使用storyboards. UITableView设置有许多不同的static cells部分。

我遇到的问题是我试图用几种不同的语言设置我的应用程序。为此,我需要能够以UITableView某种方式更改章节标题。

请问有人可以帮我吗?理想情况下,我想使用来解决这个问题,IBOutlets但是我怀疑在这种情况下这甚至是不可能的。任何意见和建议将不胜感激。

提前致谢。

4

8 回答 8

288

将 UITableView 连接到控制器后delegatedatasource您可以执行以下操作:

对象

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

    NSString *sectionName;
    switch (section) {
        case 0:
            sectionName = NSLocalizedString(@"mySectionName", @"mySectionName");
            break;
        case 1:
            sectionName = NSLocalizedString(@"myOtherSectionName", @"myOtherSectionName");
            break;
        // ...
        default:
            sectionName = @"";
            break;
    }    
    return sectionName;
}

迅速

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

    let sectionName: String
    switch section {
        case 0:
            sectionName = NSLocalizedString("mySectionName", comment: "mySectionName")
        case 1:
            sectionName = NSLocalizedString("myOtherSectionName", comment: "myOtherSectionName")
        // ...
        default:
            sectionName = ""
    }
    return sectionName
}
于 2012-05-08T20:27:53.500 回答
17

如果您正在使用 Swift 编写代码,它看起来像这样的示例

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
    switch section
    {
        case 0:
            return "Apple Devices"
        case 1:
            return "Samsung Devices"
        default:
            return "Other Devices"
    }
}
于 2015-12-02T10:58:56.480 回答
10

使用 UITableViewDataSource 方法

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
于 2012-05-08T20:12:25.987 回答
5

titleForHeaderInSectionUITableView 的委托方法,因此应用部分写入的标题文本如下,

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return @"Hello World";
}
于 2014-11-15T04:44:56.120 回答
3

请注意,如果在 UITableView 的委托中实现,-(NSString *)tableView: titleForHeaderInSection:则不会被 UITableView 调用;- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

于 2015-08-29T10:00:23.350 回答
2

我不知道过去版本的UITableView协议,但从 iOS 9 开始,func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String?它是UITableViewDataSource协议的一部分。

   class ViewController: UIViewController {

      @IBOutlet weak var tableView: UITableView!

      override func viewDidLoad() {
         super.viewDidLoad()
         tableView.dataSource = self
      }
   }

   extension ViewController: UITableViewDataSource {
      func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
         return "Section name"
      }
   }

您无需声明delegate即可用数据填充表格。

于 2015-07-31T14:43:47.207 回答
2
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
   return 45.0f; 
//set height according to row or section , whatever you want to do!
}

部分标签文本已设置。

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *sectionHeaderView;

        sectionHeaderView = [[UIView alloc] initWithFrame:
                             CGRectMake(0, 0, tableView.frame.size.width, 120.0)];


    sectionHeaderView.backgroundColor = kColor(61, 201, 247);

    UILabel *headerLabel = [[UILabel alloc] initWithFrame:
                            CGRectMake(sectionHeaderView.frame.origin.x,sectionHeaderView.frame.origin.y - 44, sectionHeaderView.frame.size.width, sectionHeaderView.frame.size.height)];

    headerLabel.backgroundColor = [UIColor clearColor];
    [headerLabel setTextColor:kColor(255, 255, 255)];
    headerLabel.textAlignment = NSTextAlignmentCenter;
    [headerLabel setFont:kFont(20)];
    [sectionHeaderView addSubview:headerLabel];

    switch (section) {
        case 0:
            headerLabel.text = @"Section 1";
            return sectionHeaderView;
            break;
        case 1:
            headerLabel.text = @"Section 2";
            return sectionHeaderView;
            break;
        case 2:
            headerLabel.text = @"Section 3";
            return sectionHeaderView;
            break;
        default:
            break;
    }

    return sectionHeaderView;
}
于 2016-05-30T11:22:56.727 回答
2

其他答案没有错,但这个提供了一种非编程解决方案,在静态表较小的情况下可能很有用。好处是可以使用故事板组织本地化。可以继续通过 XLIFF 文件从 Xcode 导出本地化。Xcode 9 还提供了几个新工具来简化本地化

(原来的)

我有类似的要求。我的 Main.storyboard(Base) 中有一个带有静态单元格的静态表。要使用 .string 文件本地化章节标题,例如 Main.strings(German),只需在情节提要中选择章节并记下对象 ID

对象 ID

然后转到您的字符串文件,在我的情况下为 Main.strings(German) 并插入翻译,如:

"MLo-jM-tSN.headerTitle" = "Localized section title";

其他资源:

于 2017-09-20T12:21:35.117 回答