OStack程序员社区-中国程序员成长平台

标题: ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:33
标题: ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么?

我正在尝试使用 uitableviewcontroller 来模仿 iTunes 的专辑页面,但后来我想我可能走错了方向。

我的计划是在 tableView: cellForRowAtIndexPath: 中做一些事情。 indexPath.row == 0时,我做专辑描述(即上半部分),否则我做歌曲描述(即下半部分)。

这是我的代码:

 - (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (!cell){
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

if (indexPath.row == 0 ){
    CGRect imageFrame = CGRectMake(5, 5, 69, 69);

    UIImageView *coverFram = [[UIImageView alloc] initWithFrame:imageFrame];
    NSString *imagePath = [[NSBundle mainBundle] pathForResource"cover" ofType"jpg"];
    coverFram.image = [[UIImage alloc] initWithContentsOfFile:imagePath];

    [cell.contentView addSubview:coverFram];
}else{
    NSInteger adjustedIndexPathRow = indexPath.row - 1;

    cell.textLabel.text = [self.cellRow objectAtIndex:adjustedIndexPathRow];
}

return cell;
} 

有两个地方我没有简单的想法来实现它:

首先,在iTunes的专辑页面中,有一个分段控件(见图)。当我按下其他部分时,说“review”,上半部分仍然存在,而整个下半部分已更改。

其次,我不知道如何关闭图像中的间隙显示(红色圆圈)。

所以,我认为可能还有其他更聪明(或更简单)的方法可以做到这一点。就像,是否可以将页面分为两部分:然后通过 View 执行上部;并通过表格 View 做下部? (只是我的猜测)

请指教。谢谢。

enter image description here



Best Answer-推荐答案


你的假设是完全正确的。这就是你的情况。引用下图。

enter image description here

构造包含专辑封面、详细信息和分段控件的 View 的顶部。 View 的底部将保留给 View ,这些 View 将通过基于所选段实例化其他 View Controller 来加载。

关于ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20185816/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4