- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们已经尝试解决这个问题 10 多天了,但仍然没有解决这个问题。
我正在尝试根据“ExerciseName”列的名称按字母顺序从 A-Z 将部分添加到 TableView 中。我还有“BodyPartName”、“CategoryName”?每个“ExerciseName”的数据列。
我想从 A-Z 填充各个部分,并将“ExerciseName”与“BodyPartName”和“CategoryName”一起排序到每个部分,以获取同一行中的其他标签。
我成功地在A-Z部分下实现ExerciseName,但无法将BodyPartName和CategoryName添加到同一行的其他标签中。请帮忙!!
预期结果
一个
腹肌“(核心)”
ARM 按压“( ARM )”“(哑铃)”
B
二头肌弯举“( ARM )”“(杠铃)”
背部扩展“(背部)”“(机器)”
无法填充同一行的“BodyPartName”标签和“CategoryName”标签。
这是我的 Realm 数据模型:
class Exercises: Object
{
@objc dynamic var ExerciseID = 0
@objc dynamic var ExerciseName = ""
@objc dynamic var BodyPartName = ""
@objc dynamic var CategoryName: String? = ""
//Adding Parent Table BodyPart & Category.
var parentBodyParts = LinkingObjects(fromType: BodyParts.self, property: "exercises")
var parentCategory = LinkingObjects(fromType: Category.self, property: "category")
}
我的代码:
let realm = try! Realm()
var exerciseArray: Results<Exercises>!
override func viewDidLoad()
{
super.viewDidLoad()
tableView.register(UINib(nibName: "customCell", bundle: nil), forCellReuseIdentifier: cellID)
sectionFunction()
}
var sectionDictionary = [String:[String]]()
var sectionTitles = [String]()
func sectionFunction()
{
exerciseArray = realm.objects(Exercises.self).sorted(byKeyPath: "ExerciseName")
for section in exerciseArray
{
let sectionKey = String(section.ExerciseName.prefix(1))
if var sectionValues = sectionDictionary[sectionKey]
{
sectionValues.append(section.ExerciseName) // Adding ExerciseNames to the Keys
sectionDictionary[sectionKey] = sectionValues
}
else
{
sectionDictionary[sectionKey] = [section.ExerciseName]
}
}
sectionTitles = [String](sectionDictionary.keys)
sectionTitles = sectionTitles.sorted(by: {$0 < $1}) // Alphabetical order for Keys:Values
}
override func numberOfSections(in tableView: UITableView) -> Int
{
return sectionTitles.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return sectionTitles[section]
}
override func sectionIndexTitles(for tableView: UITableView) -> [String]?
{
return sectionTitles
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
let sectionKey = sectionTitles[section]
if let sectionValues = sectionDictionary[sectionKey]
{
return sectionValues.count
}
return 0
// return exercises.filter("ExerciseName == %@", sectionNames[section]).count
}
// Register custom cell for Table View
let cellID = "customCell"
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: cellID, for: indexPath) as! customCell
let sectionKey = sectionTitles[indexPath.section]
if let sectionValues = sectionDictionary[sectionKey]
{
exerciseArray = realm.objects(Exercises.self).sorted(byKeyPath: "ExerciseName")
cell.exerciseName.text = sectionValues[indexPath.row]
cell.bodyPartName.text = exerciseArray.filter("ExerciseName == %@", sectionValues[indexPath.row]) [indexPath.row].BodyPartName
cell.categoryName.text = exerciseArray.filter("ExerciseName == %@", sectionValues[indexPath.row]) [indexPath.row].CategoryName ?? ""
cell.backgroundColor = .clear
}
return cell
}
自定义单元格:
class customCell: UITableViewCell {
@IBOutlet weak var exerciseName: UILabel!
@IBOutlet weak var bodyPartName: UILabel!
@IBOutlet weak var categoryName: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
}
最佳答案
问题中的代码存在许多问题,让我提供一个可能有帮助的示例,而不是试图剖析它们。
假设我们在 Realm 中存储了一堆水果。我们希望使用部分在表格 View 中按字母顺序显示它们
A
Apple
B
Banana
等等
第一段代码是一个结构,用于保存部分标题以及该部分中的水果数组。此外,还有一个 FruitNameArray 类,它将充当保存所有 FruitStructs 的 tableView 数据源。
struct FruitStruct {
var sectionTitle = ""
var fruitNameArray = [String]()
}
var fruitDataSource = [FruitStruct]()
我正在使用一个数组来保存初始数据,但在您的情况下,它可能是从 Realm 填充的 Realm 结果对象。这是从 viewDidLoad 调用的,用于将我们的数据组织到 dataSource 数组中
func setupDataSourceData() {
let fruitArray = ["Apple", "Pear", "Banana", "Bing Cherry", "Grape", "Orange", "Plum", "Watermelon", "Cantelope"]
let allFirstChars = fruitArray.map { String($0.prefix(1)) } //get all first chars for section titles
let sectionTitles = Array(Set(allFirstChars)).sorted() //eliminate dups and sort
//iterate over the unique section titles and get the fruits that are in that section
// sort and then craft structs to hold the title and the associated fruits
sectionTitles.forEach { firstChar in
let results = fruitArray.filter { $0.prefix(1) == firstChar }
let sortedFruits = results.sorted()
let fruit = FruitStruct(sectionTitle: firstChar, fruitNameArray: sortedFruits)
fruitDataSource.append(fruit)
}
for fruitData in fruitDataSource {
print(fruitData.sectionTitle)
let fruits = fruitData.fruitNameArray
for fruitName in fruits {
print(" \(fruitName)")
}
}
}
然后,tableView 需要 4 个函数来显示各个部分,然后显示每个部分中的行。您似乎拥有这 4 个,但可能不需要另外一个 sectionIndexTitles
。
//
//handle sections
//
func numberOfSections(in tableView: UITableView) -> Int {
return self.fruitDataSource.count
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
let title = self.fruitDataSource[section].sectionTitle
return title
}
//
//handleTableView rows
//
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let rowsInSection = self.fruitDataSource[section].fruitNameArray.count
return rowsInSection
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cellReuseIdentifier", for: indexPath)
let text = self.fruitDataSource[indexPath.section].fruitNameArray[indexPath.row]
cell.textLabel?.text = text
return cell
}
请注意,在填充 tableView 时,我没有执行任何过滤和任何其他操作。该部分代码需要快速且易于 UI 响应尽可能快。
我只是得到一个字符串
let text = self.fruitDataSource[indexPath.section].fruitNameArray[indexPath.row]
但就您而言,您可能希望返回一个 exersise 对象,然后您可以在其中获取exerciseName 和 bodypartName,然后在自定义 cellView 中分配它们
最佳实践说明:类属性应采用小写形式 -exerciseName,而不是大写形式ExerciseName。类和结构名称通常大写。
关于swift - 使用 Realm 和 Swift 的 UITableView 具有按字母顺序排列的多个部分,多个标签与相同的数据连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59438921/
在 MySQL 数据库中,我在表中有一列既有纯数字也有混合数字/字母。没有模式,如果是纯数字我想区分,标记为true,否则为false。有什么好的方法可以使用吗?我试过: ID REGEXP '^[[
这个问题在这里已经有了答案: Numbers as column names of data frames (2 个回答) Why am I getting X. in my column names
尝试提出一个正则表达式来捕获诸如 AB1234 或 BA2321 之类的组。本质上需要捕获以 AB 或 BA 开头并后跟 4 位数字的任何内容。 目前,我有类似的东西,但这似乎没有考虑数字 (AB|B
var z = []; for(var i = 1; i len) z.push("a".repeat(len-i%len)) console.log(z.join("\n")); 关于jav
我需要一个仅用于数字、字母、空格和连字符的正则表达式。 像这样的 ^[a-zA-Z0-9]+$ 得到字母和数字,但我需要一个用于上述。这些真的很难理解! 最佳答案 这是你需要的: /^[0-9A-Za
有没有人可以帮助我解决 PDFBox 中的字母问题我正在尝试打印字母“ń”(波兰语字母)并且我得到了类似 þÿ J 的东西。 Dı B R O W 2S0 :K0 3I. 请帮忙! 最佳答案 我遇到了
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 5 年前。 Improve this ques
我尽量不让我的文本 block 把一个词分成几个部分并跳到下一行。对于每种设备尺寸,文本都会中断并造成可读性问题。我尝试将 marring-right 与 % 一起使用,但并没有太大帮助。 这是我的哈
这是我第一次向 Stack Overflow 发帖提问。我是编程新手,所以如果我说的奇怪或错误,请原谅。 在下面的文件中;它读取目录并将其保存到变量 nAddress 中。然后删除文件扩展名;将文件分
我希望当用户将鼠标悬停在页面上时,我的页面上的某些文本会重新排列字母。例如,将鼠标悬停在“WORK”上,它就会变成“OWKR”。我怀疑需要 js,但我对 js 还是很陌生。下面是我的 html:
我已经为此工作了几个小时,现在我有点卡住了....请帮助我。我是一个完全的编程障碍。除字母表方法外,所有方法都可以正常工作。 它将接收两个字符(大写或小写)并返回由给定 char 值范围组成的字符串。
我想编写一个程序,在输入的同一行中读取 n 个不同化学元素的名称(其中 1 ≤ n ≤ 17 和 n 也在输入中读取)(名称由空格分开)。化学元素的名称应存储在不同的字符串中以供进一步使用。 由于 n
我想隐藏一个字母,并在链接中显示另一个字母,当然,悬停字母的样式不同。例如: 这是一个... ...normal link. 这是一个... ...hovêrêd lînk. 如何实现?谢谢。 编辑:
我一直被这个相当愚蠢的想法所挑战。 所以我可以用 Blabla[span class=superI]i[/span]rest 替换所有出现的“i”:) 我的想法是在真正的 i“后面”添加一个额外的(红
本文以实例演示5种验证码,并介绍生成验证码的函数。PHP生成验证码的原理:通过GD库,生成一张带验证码的图片,并将验证码保存在Session中。 ?
下面给大家介绍下JS正则表达式 必须包含数字、字母、特殊字符 js正则表达式要求: 1. 必须包含数字、英文字母、特殊符号且大于等于8位 2. 特殊符号包括: ~!@#$%^&* 正
我在这里和网上四处寻找解决方案。 问题是我只想接受信件。但是,如果我至少输入一个字母,无论是否有符号或数字,它都会接受。如何获得仅 封信? if (!preg_match("/[a-zA-Z]/",
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 去年关闭。 Improve th
制表符分隔的文本文件,实际上是数据库表的导出(使用 bcp),具有以下形式(前 5 列): 102 1 01 e113c 3224.96 12 102 1 01 e185
我需要循环遍历数据数组并为每个数组值打印一个“递增”字母。我知道我可以做到这一点: $array = array(11, 33, 44, 98, 1, 3, 2, 9, 66, 21, 45); //
我是一名优秀的程序员,十分优秀!