Невозможно заполнить UITableview данными JSON - PullRequest
0 голосов
/ 18 марта 2019

У меня есть локальный файл json (вы можете найти его здесь ).

Я пытаюсь заполнить UITableView этим json, и я могу сгенерировать таблицу.

но я могу видеть только упомянутые заголовки, а не соответствующие данные под ячейками этих заголовков.

Я опубликую часть кода ниже и могу поделиться, если это поможет

enum ProfileViewModelItemType {
    case nameAndPicture
    case about
    case email
    case friend
    case attribute
}

protocol ProfileViewModelItem {
    var type: ProfileViewModelItemType { get }
    var rowCount: Int { get }
    var sectionTitle: String  { get }
}

extension ProfileViewModelItem {
    var rowCount: Int {
        return 1
    }
}

class ProfileViewModelNameItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .nameAndPicture
    }

    var sectionTitle: String {
        return "Main Info"
    } 
}

class ProfileViewModelNameAndPictureItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .nameAndPicture
    }

    var sectionTitle: String {
        return "Main Info"
    }

    var rowCount: Int {
        return 1
    }

    var pictureUrl: String
    var name: String

    init(name: String , pictureUrl: String) {
        self.name = name
        self.pictureUrl = pictureUrl
    }
}

class ProfileViewModelAboutItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .about
    } 

    var sectionTitle: String {
        return "About"
    }
    var rowCount: Int {
        return 1
    }

    var about: String

    init(about: String) {
        self.about = about
    }
}

class ProfileViewModelEmailItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .email
    }

    var sectionTitle: String {
        return "Email"
    }
    var rowCount: Int {
        return 1
    }
    var email: String

    init(email: String) {
        self.email = email
    }
}

class ProfileViewModelAttributeItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .attribute
    }

    var sectionTitle: String {
        return "Attributes"
    }

    var rowCount: Int {
        return attributes.count
    }

    var attributes: [Attribute]

    init(attributes: [Attribute]) {
        self.attributes = attributes
    }
}

class ProfileViewModeFriendsItem: ProfileViewModelItem {
    var type: ProfileViewModelItemType {
        return .friend
    }

    var sectionTitle: String {
        return "Friends"
    }

    var rowCount: Int {
        return friends.count
    }

    var friends: [Friend]

    init(friends: [Friend]) {
        self.friends = friends
    }
}

class ProfileViewModel: NSObject {
    var items = [ProfileViewModelItem]()

    override init() {
        super.init()
        guard let data = dataFromFile("ServerData"), let profile =  Profile(data: data) else {
            return
        }

        if let name = profile.fullName, let pictureUrl = profile.pictureUrl {
            let nameAndPictureItem = ProfileViewModelNameAndPictureItem(name: name, pictureUrl: pictureUrl)
            items.append(nameAndPictureItem)
        }

        if let about = profile.about {
            let aboutItem = ProfileViewModelAboutItem(about: about)
            items.append(aboutItem)
        }

        if let email = profile.email {
            let dobItem = ProfileViewModelEmailItem(email: email)
            items.append(dobItem)
        }

        let attributes = profile.profileAttributes
        // we only need attributes item if attributes not empty
        if !attributes.isEmpty {
             let attributesItem = ProfileViewModelAttributeItem(attributes: attributes)
            items.append(attributesItem)
        }

        let friends = profile.friends
        // we only need friends item if friends not empty
        if !profile.friends.isEmpty {
            let friendsItem = ProfileViewModeFriendsItem(friends: friends)
             items.append(friendsItem)
        }
    }
}

extension ProfileViewModel:UITableViewDataSource {


    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        return items[section].sectionTitle
    }

    func numberOfSections(in tableView: UITableView) -> Int {
        return items.count
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return items[section].rowCount
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let item = items[indexPath.section]
        switch item.type {
        case .nameAndPicture:
            if let cell = tableView.dequeueReusableCell(withIdentifier: NameAndPictureCell.identifier, for: indexPath) as? NameAndPictureCell {
                cell.item = item
                return cell
            }
        case .about:
            if let cell = tableView.dequeueReusableCell(withIdentifier: AboutCell.identifier, for: indexPath) as? AboutCell {
                cell.item = item
               return cell
            }
        case .email:
            if let cell = tableView.dequeueReusableCell(withIdentifier: EmailCell.identifier, for: indexPath) as? EmailCell {
                cell.item = item
                return cell
            }
        case .friend:
            if let item = item as? ProfileViewModeFriendsItem, let cell = tableView.dequeueReusableCell(withIdentifier: FriendCell.identifier, for: indexPath) as? FriendCell {
                let friend = item.friends[indexPath.row]
                cell.item = friend
                return cell
            }
        case .attribute:
            if let item = item as? ProfileViewModelAttributeItem, let cell = tableView.dequeueReusableCell(withIdentifier: AttributesCell.identifier, for: indexPath) as? AttributesCell {
                cell.item = item.attributes[indexPath.row]
               return cell
            }
        }

        // return the default cell if none of above succeed
        return UITableViewCell()
    }
}


public func dataFromFile(_ filename: String) -> Data? {
    @objc class TestClass: NSObject { }

    let bundle = Bundle(for: TestClass.self)
    if let path = bundle.path(forResource: filename, ofType: "json") {
        return (try? Data(contentsOf: URL(fileURLWithPath: path)))
    }
    return nil
}

class Profile {
    var fullName: String?
    var pictureUrl: String?
    var email: String?
    var about: String?
    var friends = [Friend]()
    var profileAttributes = [Attribute]()

    init?(data: Data) {
        do {
             if let json = try JSONSerialization.jsonObject(with: data) as? [String: Any],
                let body = json["data"] as? [String: Any] {
                self.fullName = body["fullName"] as? String
                self.pictureUrl = body["pictureUrl"] as? String
                self.about = body["about"] as? String
                self.email = body["email"] as? String

                if let friends = body["friends"] as? [[String: Any]] {
                    self.friends = friends.map { Friend(json: $0) }
                }

                if let profileAttributes = body["profileAttributes"] as? [[String: Any]] {
                    self.profileAttributes = profileAttributes.map { Attribute(json: $0) }
                }
            }
        } catch {
            print("Error deserializing JSON: \(error)")
            return nil
        }
    }
}

class Friend {
    var name: String?
    var pictureUrl: String?

    init(json: [String: Any]) {
        self.name = json["name"] as? String
        self.pictureUrl = json["pictureUrl"] as? String
    }
}

class Attribute {
    var key: String?
    var value: String?
    init(json: [String: Any]) {
        self.key = json["key"] as? String
        self.value = json["value"] as? String
    }
 }

табличное представление должно содержать не только имена друзей, но и изображения, которые присутствуют в активах.

Я также определил пользовательские классы для всех различных типов ячеек, удалил их из очереди и зарегистрировал их

смотрю на это уже неделю, но все равно нет, любая помощь будет признательна

Я также предоставил рамку и добавил все метки, изображения и т. Д. В табличное представление как подвид, но не повезло

1 Ответ

2 голосов
/ 18 марта 2019

Мне было немного трудно понять.Во-первых, «я также предоставил рамку и добавил все метки, изображения и т. Д. В представление таблицы как подпредставление» звучит неправильно.Вам никогда не нужно вызывать addSubview(...) для UITableView.Вы добавляете элементы пользовательского интерфейса в UITableViewCell с помощью tableCell.contentView.addSubview (...), но даже тогда вам лучше спроектировать ячейки табличного представления в конструкторе интерфейсов, используя autolayout.В настоящее время настройка фреймов практически бесполезна, так как автопоставка здесь навсегда.Единственное место для установки фактических кадров - это layoutSubviews()

Во-вторых, не отображается ли оно, потому что у вас есть rowHeight, чтобы быть константой вместо UITableView.automaticDimension?Может быть, у вас есть клетки, рассчитанные на определенную высоту, но вы не сказали табличному представлению, что они имеют такую ​​высоту?Я бы предложил прибегнуть к поиску в Google «ячеек таблицы с самоизмерением с помощью автоматического определения размера» или использовать метод делегата табличного представления ...heightForRowAt indexPath: ...

И, наконец, глядя на ваш код, я бы предложил модернизировать ваш подход к синтаксическому анализу JSON:

Что-то вроде this , или просто Google "JSON and Codable swift"

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...