如何创建固定第一列的ios表和下一列,可水平滚动到1的行

时间:2013-03-21 09:31:56

标签: ios uitableview

在iOS中,我基本上想要按如下方式显示图像:

我在表格中需要2列。第一列中的图像是固定的,而在第二列中,行应该具有水平滚动以滚动图像。在选择图像时,它应该转到另一个视图。

2 个答案:

答案 0 :(得分:0)

您需要关注this tutorial以及类似内容。

有关如何修复第一张图像的详细信息,没有比starting from scratch, going by the books更好的方法。

答案 1 :(得分:0)

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    }

    if(indexPath.row == 0){

        //Normar cell

    }else if(indexPath.row == 1){

        //add ScrollVeiw
    }
}

和单元格的高度

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

    if (indexPath.row == 1) {
        //height for scrollview

    }
}

希望这会对你有所帮助。

一切顺利!!!