1

我正在使用基于文本的内容创建我认为非常简单的场景。我希望格式是一个标题,然后是一段文本,然后是另一个标题,依此类推。

目前我正在使用界面构建器并创建一个标签,然后是一个 UITextView,然后是另一个标签,然后是另一个 UITextView,依此类推。有没有更好的方法,因为这似乎有点啰嗦。

谢谢

4

1 回答 1

0

为什么你不能尝试使用多达 Sections 的 UITableView 。

titleForHeaderInSection用于单元格中的标题&& UItextField

    -(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        return 1 ;
    }

    -(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
        return YourNEed;

    }

    -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
       // return header_Name accordind to the Sections
switch (section) {
        case 0:
            return @"1st Label";
           // ...........

    }
于 2013-10-22T09:08:43.103 回答