ios - Swift:无法弄清楚如何保存用户离开 TableView 的方式

标签 ios swift uitableview core-data nsuserdefaults

使用 swift 3

我一直在研究博客阅读器应用程序,但我一直在研究如何像用户离开时那样保存表格 View 。

该应用程序由我将数据输入到 mysql 数据库中,该数据库使用 php 发送并使用 json 和 swift 3 接收以填充 tableview。我希望每天更新这个数据库。 tableview 中有两个部分,第一个是 followedArray,第二个是 mainArray,这是所有对象在 jsonArray 之后的位置。当用户单击关注按钮时,该单个单元格将移动到 followedArray 中,用户可以在其中查看正在更新的博客并接收通知。

我已经尝试通过将整个数组保存到一个对象中来使用 UserDefaults 但它没有成功,因为当不需要保存整个数组时,使用 NSCoding 创建 NSData 对象是一种复杂的方式(我的猜测).

我的问题是,有没有一种简单的方法可以保存用户离开 tableview 的方式?

例如:在“所有对象部分”中,假设我有 3 个单元格,用户单击了 2 个单元格上的关注按钮,这 2 个单元格现在位于“已关注部分”中,1 个单元格位于“所有对象部分”中.如何保存此 TableView 的状态。我想保存被关注的单元格现在所在的部分以及更改后的按钮,它现在是一个被关注的按钮而不是关注按钮(保存隐藏的启用代码,因为我隐藏一个按钮以显示另一个按钮)。

我使用 UserDefaults 还是 CoreData?也许是 CocoaPod 库?我是保存整个数组还是只保存它所在的部分和.hidden 代码?更新和添加新对象将如何影响它?

我对 Swift 还很陌生,所以如果你能提供帮助,我将不胜感激。您需要了解应用程序工作原理的任何代码,只需提出要求即可,因为我不知道需要显示哪些代码。我知道您不应该要求提供代码,但如果可以的话,那就太好了,因为我已经尝试了几个月但没有任何进展。谢谢!

这是我处理传入的 json 数据的方式:

主 Controller .swift

var jsonArray: NSMutableArray = []
var mainArray = [Blog]()
var followedArray = [Blog]()
var filteredArray = [Blog]()

// Title for Header
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

    if !(searchController.isActive && searchController.searchBar.text != "") {

        if section == 0 {
            return "Followed Blogs"
        }
        else {
            return "All Blogs"
        }
    }
    return "Filtered Blogs"
}

// Number of Rows in Section
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    if !(searchController.isActive && searchController.searchBar.text != "") {

        if section == 0 {

            return followedArray.count
        }
        else if (section == 1) {

            return mainArray.count
        }

    }
    return filteredArray.count

}

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

    let CellIdentifier = "Cell"
    var cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier) as! CustomCell

    if cell != cell {
        cell = CustomCell(style: UITableViewCellStyle.default, reuseIdentifier: CellIdentifier)
    }

    // Configuring the cell
    var blogObject: Blog

    if !(searchController.isActive && searchController.searchBar.text != "") {
        if indexPath.section == 0 {
            blogObject = followedArray[indexPath.row] 
            cell.populateCell(blogObject, isFollowed: true, indexPath: indexPath, parentView: self)
        }
        else if indexPath.section == 1 {
            blogObject = mainArray[indexPath.row] 
            cell.populateCell(blogObject, isFollowed: false, indexPath: indexPath, parentView: self)
        }
    }
    else {
        blogObject = filteredArray[indexPath.row] 
        cell.populateCell(blogObject, isFollowed: false, indexPath: indexPath, parentView: self)
    }

    return cell
}

@IBAction func followButtonClick(_ sender: UIButton!) {

    // Adding row to tag
    let buttonPosition = (sender as AnyObject).convert(CGPoint.zero, to: self.myTableView)
    if let indexPath = self.myTableView.indexPathForRow(at: buttonPosition) {

        // Showing Status Labels
        let cell = self.myTableView.cellForRow(at: indexPath) as! CustomCell
        cell.firstStatusLabel.isHidden = false
        cell.secondStatusLabel.isHidden = false

        // Change Follow to Following
        (sender as UIButton).setImage(UIImage(named: "follow.png")!, for: .normal)
        cell.followButton.isHidden = true
        cell.followedButton.isHidden = false

        // Checking wether to import from mainArray or filteredArray to followedArray
        if !(searchController.isActive && searchController.searchBar.text != "") {

            self.myTableView.beginUpdates()

            // ----- Inserting Cell to followedArray -----
            followedArray.insert(mainArray[indexPath.row], at: 0)
            myTableView.insertRows(at: [IndexPath(row: 0, section: 0)], with: .fade)

            // ----- Removing Cell from mainArray -----
            mainArray.remove(at: indexPath.row)
            let rowToRemove = indexPath.row
            self.myTableView.deleteRows(at: [IndexPath(row: rowToRemove, section: 1)], with: .fade)

            self.myTableView.endUpdates()

            myTableView.reloadData()
        }
        else {

            self.myTableView.beginUpdates()

            // ----- Inserting Cell to followedArray -----
            let blogObject: Blog = filteredArray[indexPath.row]
            let indexOfObjectInArray = mainArray.index(of: blogObject)

            followedArray.insert(blogObject, at: 0)

            // ----- Removing Cell from filteredArray -----
            filteredArray.remove(at: indexPath.row)
            blogArray.remove(at: indexOfObjectInArray!)
            let rowToRemove = indexPath.row
            self.myTableView.deleteRows(at: [IndexPath(row: rowToRemove, section: 0)], with: .fade)

            self.myTableView.endUpdates()

            myTableView.reloadData()
        }
    }
}

func retrieveDataFromServer() {

    let getDataURL = "http://exampleblog.com/receiving.php"
    let url: NSURL = NSURL(string: getDataURL)!

    do {

        let data: Data = try Data(contentsOf: url as URL)
        jsonArray = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as! NSMutableArray

        // Looping through jsonArray
        for i in 0..<jsonArray.count {

            // Create Blog Object
            let bID: String = (jsonArray[i] as AnyObject).object(forKey: "id") as! String
            let bName: String = (jsonArray[i] as AnyObject).object(forKey: "blogName") as! String
            let bStatus1: String = (jsonArray[i] as AnyObject).object(forKey: "blogStatus1") as! String
            let bStatus2: String = (jsonArray[i] as AnyObject).object(forKey: "blogStatus2") as! String
            let bURL: String = (jsonArray[i] as AnyObject).object(forKey: "blogURL") as! String
            // New
            let bType: String = (jsonArray[i] as AnyObject).object(forKey: "blogType") as! String
            let bDate: String = (jsonArray[i] as AnyObject).object(forKey: "blogDate") as! String
            let bPop: String = (jsonArray[i] as AnyObject).object(forKey: "blogPop") as! String

            // Add Blog Objects to mainArray
            mainArray.append(Blog(blogName: bName, andBlogStatus1: bStatus1, andBlogStatus2: bStatus2, andBlogURL: bURL, andBlogID: bID, andBlogType: bType, andBlogDate: bDate, andBlogPop: bPop))

        }
    }
    catch {
        print("Error: (Retrieving Data)")
    }

    myTableView.reloadData()
}

CustomCell.swift - 如何填充单元格在此处输入代码

class CustomCell: UITableViewCell {

@IBOutlet weak var firstStatusLabel: UILabel!
@IBOutlet weak var secondStatusLabel: UILabel!
@IBOutlet weak var followButton: UIButton!
@IBOutlet weak var followedButton: UIButton!

override func awakeFromNib() {
    super.awakeFromNib()

    self.followButton.isHidden = true
    self.followedButton.isHidden = true
}

func populateCell(_ blogObject: Blog, isFollowed: Bool, indexPath: IndexPath, parentView: Any) {

    // Loading Status Labels
    self.firstStatusLabel.text = blogObject.blogStatus1
    self.secondStatusLabel.text = blogObject.blogStatus2
    self.firstStatusLabel.isHidden = true
    self.secondStatusLabel.isHidden = true

    if isFollowed {
        self.followedButton.tag = indexPath.row
        self.followedButton.addTarget(parentView, action: #selector(MainController.followedButtonClick(_:)), for: .touchUpInside)

        self.followedButton.isHidden = false
        self.followButton.isHidden = true

        // Status Labels
        self.firstStatusLabel.isHidden = false
        self.secondStatusLabel.isHidden = false

    }
    else {
        self.followButton.tag = indexPath.row
        self.followButton.addTarget(parentView, action: #selector(MainController.followButtonClick(_:)), for: .touchUpInside)

        self.followedButton.isHidden = true
        self.followButton.isHidden = false

        // Status Labels
        self.firstStatusLabel.isHidden = true
        self.secondStatusLabel.isHidden = true

    }
}
}

博客.swift

class Blog: NSObject {

// Strings
var blogName: String?
var blogStatus1: String?
var blogStatus2: String?
var blogURL: String?
var blogID: String?
var blogType: String?
var blogDate: String?
var blogPop: String?

override init() {

}

// Converting Strings into Objects
init(blogName bName: String,
     andBlogStatus1 bStatus1: String,
     andBlogStatus2 bStatus2: String,
     andBlogURL bURL: String,
     andBlogID bID: String,
     andBlogType bType: String,
     andBlogDate bDate: String,
     andBlogPop bPop: String)
{
    super.init()

    self.blogName = bName
    self.blogStatus1 = bStatus1
    self.blogStatus2 = bStatus2
    self.blogURL = bURL
    self.blogID = bID
    self.blogType = bType
    self.blogDate = bDate
    self.blogPop = bPop
}

}

最佳答案

有很多不同的方法可以完成您想要的事情,既可以在本地存储信息,也可以远程存储信息。如果博客 ID 是唯一的,您可以将它们作为字符串数组存储在默认值中:

UserDefaults.standard.set(followedBlogIds, forKey: "followedBlogIds")

然后你可以随时捕获它们,只要确保适本地打开/转换它们:

if let storedBlogIds = UserDefaults.standard.object(forKey: "followedBlogIds") as? [String] {
    //filter your blogs by id and put them in the appropriate
    //arrays for your table
}

关于ios - Swift:无法弄清楚如何保存用户离开 TableView 的方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44446454/

相关文章:

ios - 如何获取 UITableView 约束?

html - iPhone/Pad 上恼人的右白带

class - Swift 和使用类扩展

ios - UIViewController 内的 UITableViewController

swift - 单击按钮时动态标签更改

ios - 手动关闭并重新打开后无法访问 Xcode 环境变量

ios - iPhone tableview 下拉菜单

ios - 为什么 UITableViewCell detailTextLabel 在 Swift 中是可选的而 textLabel 不是

Android 应用到应用通信

ios - 有没有办法知道 iOS 上 WiFI 信号的强度