• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:33:24 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试使用 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap