草庐IT

ios - 如何将标签从一个 UITableView 添加到另一个 UITableView

coder 2024-01-28 原文

我有 2 个 ViewControllers,每个 ViewController 都有一个 UITableView。 在 MainViewController 中,我有几行,我想为每一行添加来自第二个 ViewController 的不同标签。 我的标签保存在字典中(我不知道这是否是最好的方法,但我在想也许我会避免使用字典而不是数组来两次附加标签)。 问题是我没有正确附加选定的标签,我不知道该怎么做。 我在这里创建了一个反射(reflect)我的问题的小项目:https://github.com/tygruletz/AppendTagsToCells

这是主要 VC 的代码:

class ChecklistVC: UIViewController {

    @IBOutlet weak var questionsTableView: UITableView!

    //Properties
    lazy var itemSections: [ChecklistItemSection] = {
        return ChecklistItemSection.checklistItemSections()
    }()
    var lastIndexPath: IndexPath!
    var selectedIndexPath: IndexPath!

    override func viewDidLoad() {
        super.viewDidLoad()

    }

    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(true)

        questionsTableView.reloadData()
    }
}

extension ChecklistVC: UITableViewDelegate, UITableViewDataSource {

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        let itemCategory = itemSections[section]
        return itemCategory.checklistItems.count
    }

    func numberOfSections(in tableView: UITableView) -> Int {

        return itemSections.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: "checklistCell", for: indexPath) as! ChecklistCell

        let itemCategory = itemSections[indexPath.section]
        let item = itemCategory.checklistItems[indexPath.row]
        cell.delegate = self
        cell.configCell(item)

        cell.vehicleCommentLabel.text = item.vehicleComment
        cell.trailerCommentLabel.text = item.trailerComment

        cell.tagNameLabel.text = item.vehicleTags[indexPath.row]?.name

        return cell
    }


    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

        if segue.identifier == "goChecklistAddComment" {
            let addCommentVC = segue.destination as! ChecklistAddCommentVC
            addCommentVC.delegate = self
        }

        if segue.identifier == "goChecklistAddTag" {
            let checklistAddTag = segue.destination as! ChecklistAddTagVC

            checklistAddTag.indexForSelectedRow = self.selectedIndexPath

            checklistAddTag.tagsCallback = { result in
                print("result: \(result)")
                let item = self.itemSections[self.lastIndexPath.section].checklistItems[self.lastIndexPath.row]
                item.vehicleTags = result
            }
        }
    }
}

这是标签 ViewController 的代码:

class ChecklistAddTagVC: UIViewController {

    // Interface Links
    @IBOutlet weak var tagsTitleLabel: UILabel!
    @IBOutlet weak var tagsTableView: UITableView!

    // Properties
    var tagsDictionary: [Int: Tag] = [:]
    var tagsAdded: [Int:Tag] = [:]
    var tagsCallback: (([Int:Tag]) -> ())?
    var indexForSelectedRow: IndexPath!

    override func viewDidLoad() {
        super.viewDidLoad()
        tagsTableView.tableFooterView = UIView()

        tagsDictionary = [
            1: Tag(remoteID: 1, categoryID: 1, name: "Tag1", colour: "red"),
            2: Tag(remoteID: 2, categoryID: 1, name: "Tag2", colour: "blue"),
            3: Tag(remoteID: 3, categoryID: 1, name: "Tag3", colour: "orange"),
            4: Tag(remoteID: 4, categoryID: 1, name: "Tag4", colour: "black")
        ]

        print("Received index for SelectedRow: \(indexForSelectedRow ?? IndexPath())")
    }
}

extension ChecklistAddTagVC: UITableViewDelegate, UITableViewDataSource {

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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "defectAndDamageTagCell", for: indexPath) as! ChecklistAddTagCell
        cell.configCell()
        cell.delegate = self
        cell.tagNameLabel.text = tagsDictionary[indexPath.row + 1]?.name.capitalized
        return cell
    }

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {

        return 60
    }
}

extension ChecklistAddTagVC: ChecklistAddTagCellDelegate{

    // When the user press Add Tag then will be added in a dictionary and sent to ChecklistVC using a callback closure.
    func addTagBtnPressed(button: UIButton, tagLabel: UILabel) {

        if button.currentTitle == "+"{
            button.setTitle("-", for: UIControl.State.normal)
            tagLabel.textColor = UIColor.orange
            tagsAdded = [0: Tag(remoteID: 1, categoryID: 1, name: tagLabel.text ?? String(), colour: "red")]
            print(tagsAdded[0]?.name ?? String())
            tagsCallback?(tagsAdded)
        }
        else{
            button.setTitle("+", for: UIControl.State.normal)
            tagLabel.textColor = UIColor.black
            tagsAdded.removeValue(forKey: 0)
            print(tagsAdded)
            tagsCallback?(tagsAdded)
        }
    }
}

这是我的问题的截图:

感谢您阅读本文!

最佳答案

我修好了!

解决方案如下。您也可以在此链接中找到已完成的项目: https://github.com/tygruletz/AppendCommentsToCells

主VC:

class ChecklistVC: UIViewController {

    @IBOutlet weak var questionsTableView: UITableView!

    //Properties
    lazy var itemSections: [ChecklistItemSection] = {
        return ChecklistItemSection.checklistItemSections()
    }()
    var lastIndexPath: IndexPath!

    override func viewDidLoad() {
        super.viewDidLoad()
    }

    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(true)
        questionsTableView.reloadData()
    }
}

extension ChecklistVC: UITableViewDelegate, UITableViewDataSource {

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        let itemCategory = itemSections[section]
        return itemCategory.checklistItems.count
    }

    func numberOfSections(in tableView: UITableView) -> Int {

        return itemSections.count
    }

    // Set the header of each section
    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

        let checklistItemCategory = itemSections[section]
        return checklistItemCategory.name.uppercased()
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: "checklistCell", for: indexPath) as! ChecklistCell

        let itemCategory = itemSections[indexPath.section]
        let item = itemCategory.checklistItems[indexPath.row]
        cell.delegate = self
        cell.configCell(item)

        cell.vehicleCommentLabel.text = item.vehicleComment
        cell.trailerCommentLabel.text = item.trailerComment

        let sortedTagNames = item.vehicleTags.keys.sorted(by: {$0 < $1}).compactMap({ item.vehicleTags[$0]})

        print("Sorted tag names: \(sortedTagNames.map {$0.name})")

        let joinedTagNames = sortedTagNames.map { $0.name}.joined(separator: ", ")

        cell.tagNameLabel.text = joinedTagNames

        return cell
    }

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {

        return 150
    }

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

        if segue.identifier == "goChecklistAddComment" {
            let addCommentVC = segue.destination as! ChecklistAddCommentVC
            addCommentVC.delegate = self
        }

        if segue.identifier == "goChecklistAddTag" {
            let addTagVC = segue.destination as! ChecklistAddTagVC
            addTagVC.delegate = self
            addTagVC.addedTags = itemSections[lastIndexPath.section].checklistItems[lastIndexPath.row].vehicleTags
        }
    }
}

extension ChecklistVC: ChecklistCellDelegate {
    func tapGestureOnCell(_ cell: ChecklistCell) {

        showOptionsOnCellTapped(questionsTableView.indexPath(for: cell)!)
    }

    func showOptionsOnCellTapped(_ indexPath: IndexPath){

        let addComment = UIAlertAction(title: "? Add Comment", style: .default) { action in
            self.lastIndexPath = indexPath
            self.performSegue(withIdentifier: "goChecklistAddComment", sender: nil)
        }

        let addTag = UIAlertAction(title: "? Add Tag ⤵", style: .default) { action in
            self.showOptionsForAddTag(indexPath)
        }

        let actionSheet = configureActionSheet()
        actionSheet.addAction(addComment)
        actionSheet.addAction(addTag)

        self.present(actionSheet, animated: true, completion: nil)
    }

    // A menu from where the user can choose to add tags for Vehicle or Trailer
    func showOptionsForAddTag(_ indexPath: IndexPath){

        self.lastIndexPath = indexPath
        let addVehicleTag = UIAlertAction(title: "Add Vehicle tag", style: .default) { action in
            self.performSegue(withIdentifier: "goChecklistAddTag", sender: nil)
        }
        let addTrailerTag = UIAlertAction(title: "Add Trailer tag", style: .default) { action in
            self.performSegue(withIdentifier: "goChecklistAddTag", sender: nil)
        }
        let actionSheet = configureActionSheet()
        actionSheet.addAction(addVehicleTag)
        actionSheet.addAction(addTrailerTag)
        self.present(actionSheet, animated: true, completion: nil)
    }

    func configureActionSheet() -> UIAlertController {
        let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
        let cancel = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
        actionSheet.addAction(cancel)

        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad ){
            actionSheet.popoverPresentationController?.sourceView = self.view
            actionSheet.popoverPresentationController?.sourceRect = CGRect(x: self.view.bounds.midX, y: self.view.bounds.midY, width: 0, height: 0)
            actionSheet.popoverPresentationController?.permittedArrowDirections = []
        }

        return actionSheet
    }
}

// Receive Comments from ChecklistAddCommentVC using the Delegate Pattern
extension ChecklistVC: ChecklistAddCommentDelegate {

    func receiveVehicleComment(vehicleComment: String?, trailerComment: String?) {

        let item = itemSections[lastIndexPath.section].checklistItems[lastIndexPath.row]
        item.vehicleComment = vehicleComment ?? String()
        item.trailerComment = trailerComment ?? String()

        questionsTableView.reloadData()
    }
}

// Receive Tags from ChecklistAddTagVC using the Delegate Pattern
extension ChecklistVC: ChecklistAddTagVCDelegate{

    func receiveAddedTags(tags: [Int : Tag]) {

        let item = self.itemSections[self.lastIndexPath.section].checklistItems[self.lastIndexPath.row]
        item.vehicleTags = tags
    }
}

添加标签VC:


protocol ChecklistAddTagVCDelegate {
    func receiveAddedTags(tags: [Int: Tag])
}

class ChecklistAddTagVC: UIViewController {

    // Interface Links
    @IBOutlet weak var tagsTableView: UITableView!

    // Properties
    var tagsDictionary: [Int: Tag] = [:]
    var addedTags: [Int: Tag] = [:]
    var delegate: ChecklistAddTagVCDelegate?
    var indexPathForBtn: IndexPath!

    override func viewDidLoad() {
        super.viewDidLoad()
        tagsTableView.tableFooterView = UIView()

        tagsDictionary = [
            1: Tag(remoteID: 1, categoryID: 1, name: "Tag1", color: "red"),
            2: Tag(remoteID: 2, categoryID: 1, name: "Tag2", color: "blue"),
            3: Tag(remoteID: 3, categoryID: 1, name: "Tag3", color: "orange"),
            4: Tag(remoteID: 4, categoryID: 1, name: "Tag4", color: "black")
        ]
    }

    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)

        print("Added tags: \(addedTags.map {$1.name})")

        setupButtons()

        tagsTableView.reloadData()
    }
}

extension ChecklistAddTagVC: UITableViewDelegate, UITableViewDataSource {

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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "defectAndDamageTagCell", for: indexPath) as! ChecklistAddTagCell
        cell.configCell()
        cell.delegate = self
        cell.tagNameLabel.text = tagsDictionary[indexPath.row + 1]?.name.capitalized
        indexPathForBtn = indexPath

        return cell
    }

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {

        return 60
    }
}

extension ChecklistAddTagVC: ChecklistAddTagCellDelegate{

    // When the user press Add Tag then will be added in a dictionary and sent to ChecklistVC using a callback closure.
    func addTagBtnPressed(button: UIButton, tagLabel: UILabel) {

        let buttonPosition: CGPoint = button.convert(CGPoint.zero, to: tagsTableView)
        let indexPath = tagsTableView.indexPathForRow(at: buttonPosition)
        let indexPathForBtn: Int = indexPath?.row ?? 0
        let tag: Tag = tagsDictionary[indexPathForBtn + 1] ?? Tag(remoteID: 0, categoryID: 0, name: String(), color: String())

        if button.currentTitle == "+"{
            button.setTitle("-", for: UIControl.State.normal)
            tagLabel.textColor = UIColor.orange

            // Add selected tag to Dictionary when the user press +
            addedTags[tag.remoteID] = tag
        }
        else{
            button.setTitle("+", for: UIControl.State.normal)
            tagLabel.textColor = UIColor.black

            // Delete selected tag from Dictionary when the user press -
            addedTags.removeValue(forKey: tag.remoteID)
        }
        // Send the Dictionary to ChecklistVC
        if delegate != nil{
            delegate?.receiveAddedTags(tags: addedTags)
        }
        print("\n ****** UPDATED DICTIONARY ******")
        print(addedTags.map {"key: \($1.remoteID) - name: \($1.name)"})
    }

    // Setup the state of the buttons and also the color of the buttons to be orange if that Tag exist in `addedTags` dictionary.
    func setupButtons(){

        for eachAddedTag in addedTags {

            if eachAddedTag.value.remoteID == tagsDictionary[1]?.remoteID {

                print(eachAddedTag)
            }
        }
    }
}

现在是这样的:

关于ios - 如何将标签从一个 UITableView 添加到另一个 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56067334/

有关ios - 如何将标签从一个 UITableView 添加到另一个 UITableView的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 如何从 ruby​​ 中的字符串运行任意对象方法? - 2

    总的来说,我对ruby​​还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用

  3. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  4. ruby - 我需要将 Bundler 本身添加到 Gemfile 中吗? - 2

    当我使用Bundler时,是否需要在我的Gemfile中将其列为依赖项?毕竟,我的代码中有些地方需要它。例如,当我进行Bundler设置时:require"bundler/setup" 最佳答案 没有。您可以尝试,但首先您必须用鞋带将自己抬离地面。 关于ruby-我需要将Bundler本身添加到Gemfile中吗?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/4758609/

  5. ruby-on-rails - 如何验证 update_all 是否实际在 Rails 中更新 - 2

    给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru

  6. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  7. ruby - 如何将脚本文件的末尾读取为数据文件(Perl 或任何其他语言) - 2

    我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚

  8. ruby - 如何指定 Rack 处理程序 - 2

    Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack

  9. ruby - 使用 Vim Rails,您可以创建一个新的迁移文件并一次性打开它吗? - 2

    使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta

  10. ruby-on-rails - Rails - 一个 View 中的多个模型 - 2

    我需要从一个View访问多个模型。以前,我的links_controller仅用于提供以不同方式排序的链接资源。现在我想包括一个部分(我假设)显示按分数排序的顶级用户(@users=User.all.sort_by(&:score))我知道我可以将此代码插入每个链接操作并从View访问它,但这似乎不是“ruby方式”,我将需要在不久的将来访问更多模型。这可能会变得很脏,是否有针对这种情况的任何技术?注意事项:我认为我的应用程序正朝着单一格式和动态页面内容的方向发展,本质上是一个典型的网络应用程序。我知道before_filter但考虑到我希望应用程序进入的方向,这似乎很麻烦。最终从任何

随机推荐