gpt4 book ai didi

ios - UITableView 分段

转载 作者:行者123 更新时间:2023-11-29 02:02:25 27 4
gpt4 key购买 nike

我对创建应用程序还很陌生,我刚开始使用 Swift 进行 iOS 开发。我真的希望有人能花点时间帮助我,因为我现在很困。所以我正在创建一个带有主从 TableView 的应用程序。我将使用 Alamofire 从外部获取数据,返回的数据将是 JSON,我可以使用 SwiftyJSON 对其进行解析。

我能够很好地显示数据,这对我来说很好。但我想要实现的目标,以及我似乎无法理解的,是如何使用 titleForHeaderInSection 将我的项目按字母顺序划分,并能够使用 sectionIndexTitlesForTableView< 进行导航

从我的 API 收到的数据看起来像这样(格式可以更改,因为我控制 API):

{
"A": [
{
"id": "1",
"char": "A",
"title": "ABC",
"body": "Denne sang hedder ABC"
},
{
"id": "2",
"char": "A",
"title": "Abel spandabel",
"body": "Denne sang hedder Abel spandabel"
},
{
"id": "3",
"char": "A",
"title": "Aha aha aha",
"body": "Denne sang hedder Aha aha aha"
}
],
"B": [
{
"id": "4",
"char": "B",
"title": "Bussemand",
"body": "Denne sang hedder Bussemand"
},
{
"id": "5",
"char": "B",
"title": "Balademager",
"body": "Denne sang hedder Balademager"
}
],
"D": [
{
"id": "6",
"char": "D",
"title": "Dukke mand",
"body": "Denne sang hedder Dukke mand"
},
{
"id": "7",
"char": "D",
"title": "Dansevisen",
"body": "Denne sang hedder Dansevisen"
}
]
}

然后我有一个 Song.swift 文件,它定义了一个结构体,其中包含我的各个项目的一些属性。我看起来像这样:

struct Song {
var title : String
var body : String
var char : String
}

最后,我有一个 ViewController,它实现了必要的逻辑,以便使用返回的数据绘制表格 View

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

@IBOutlet weak var songsTableView: UITableView!

var songs = [Song]()

func addSong(song: Song) {
self.songs.append(song)
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return songs.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! UITableViewCell

var currentSong = songs[indexPath.row]

cell.textLabel?.text = currentSong.title

return cell
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
var nextScreen = segue.destinationViewController as! SingleViewController

if let indexPath = self.songsTableView.indexPathForSelectedRow() {
let selectedSong = songs[indexPath.row]
nextScreen.currentSong = selectedSong
}
}

func getSongs() {
Alamofire.request(.GET, "http://MYAPI.COM")
.responseJSON { (_, _, data, _) in
let json = JSON(data!)
// TODO: Come up with some better names for the "subJson"
for (key: String, subJson: JSON) in json {
// TODO: Come up with some better names for the "subSubJson"
for (key: String, subSubJson: JSON) in subJson {
var title: String = subSubJson["title"].string!
var body: String = subSubJson["body"].string!
var char: String = subSubJson["char"].string!

var song = Song(title: title, body: body, char: char)

self.addSong(song)
}
}
self.songs.sort({$0.title < $1.title})

self.songsTableView!.reloadData()
}
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.getSongs()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


}

我知道这可能应该是教科书上的内容,但我已经这样做了三天了,我开始有点失去理智了。所以我真的希望有人能花时间帮助我,并解决我可能做错的一些事情

提前致谢!

最佳答案

对于你想要的,你需要实现 tableview 的 2 个委托(delegate)方法:

func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int
func sectionIndexTitlesForTableView(tableView: UITableView) -> [AnyObject]!

但是您需要稍微修改您的模型以使其更适合这种切片。

如果你的 api 返回的数据已经被分成几个部分,我会像这样将歌曲分组在字典中:var songs:[String:[Song]?] = [:]

然后在 api 处理程序中我会做类似的事情:

for (letter, songsJsonForLetter) in json.dictionaryValue {
for songJson in songsJsonForLetter.arrayValue {
var newSong = Song(title:songJson["title"].string!, body: songJson["bopy"].string!, char: letter)
if nil != self.songs[letter] {
self.songs[letter]!.append(newSong)
}else{
self.songs[letter] = [newSong]
}
}
}

通过这种方式,您可以将歌曲直接解析为字典,其中键是字母 ["A",[Song1, Song2, Song3], "D":[Song4, Song5]].. .

现在您需要做的就是为部分索引所需的 TableView 实现 2 个委托(delegate),例如:

  func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int {
return index
}


func sectionIndexTitlesForTableView(tableView: UITableView) -> [AnyObject]! {
return self.songs.keys.array.sorted{$0 < $1}
}

当然还要修改您的代码,将 cellForRowAtIndePath 中的索引路径歌曲获取为类似以下内容:

    ...
let sectionLetter = sectionIndexTitlesForTableView(tableView)[indexPath.section] as! String
var currentSong = songs[sectionLetter]!.sorted{$0.title<$1.title}[indexPath.row]
...

附言。不要忘记将 numberOfSections 和 rowsForSection 更改为类似的内容:

  func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return songs.count
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let sectionLetter = sectionIndexTitlesForTableView(tableView)[section] as! String
return songs[sectionLetter].count
}

希望这有帮助,GL

关于ios - UITableView 分段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30176834/

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