菜鸟教程小白 发表于 2022-12-13 05:33:24

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


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

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

<p>这是我的代码:</p>

<pre><code> - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @&#34;Cell&#34;;
UITableViewCell *cell = ;

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

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

    UIImageView *coverFram = [ initWithFrame:imageFrame];
    NSString *imagePath = [ pathForResource:@&#34;cover&#34; ofType:@&#34;jpg&#34;];
    coverFram.image = [ initWithContentsOfFile:imagePath];

    ;
}else{
    NSInteger adjustedIndexPathRow = indexPath.row - 1;

    cell.textLabel.text = ;
}

return cell;
}
</code></pre>

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

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

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

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

<p>请指教。谢谢。</p>

<p> <img src="/image/zSYbl.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你的假设是完全正确的。这就是你的情况。引用下图。</p>

<p> <img src="/image/mPgSO.png" alt="enter image description here"/> </p>

<p>构造包含专辑封面、详细信息和分段控件的 View 的顶部。 View 的底部将保留给 View ,这些 View 将通过基于所选段实例化其他 ViewController 来加载。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20185816/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20185816/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 做一个像 iTunes 专辑页面这样的页面的最佳方法是什么?