gpt4 book ai didi

ios - 如何使用动态值绘制 View Controller

转载 作者:行者123 更新时间:2023-11-28 12:47:08 25 4
gpt4 key购买 nike

**  **

我必须制作一个 View ,如下图所示。我很困惑,无法确定屏幕,因为屏幕将在图像底部有更多图像,因为用户将 ScrollView 和数据,每次都会动态出现,每次 View 出现时都会出现。感谢任何帮助应用

最佳答案

经过对这种观点的长期研究,我终于得到了一个解决方案

take a Table View take multiple Prototype Cell as much you Want Set the Identifier Individually of each cell create a Subcalss of UITableViewCell Method like callForRowatindexPath you have to call like That with Diffrent Cell

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
if indexPath.row == 0 {

var cell = tableView.dequeueReusableCellWithIdentifier(kCellIdentifier) as? specificTopicTableViewCell`cell.textlabel.text = "Hello"
return cell!
}
else {
let cell2 = tableView.dequeueReusableCellWithIdentifier(kSecCellIdentifier) as? scondTopicTableViewCell
cell2.textlabel.text = "Hello"
return cell2!
}
}

关于ios - 如何使用动态值绘制 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37722335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com