Скрыть выбранную ячейку из таблицы - Swift4 - PullRequest
0 голосов
/ 06 ноября 2018

У меня есть список с 4 объектами мест , которые я запрашиваю из своей базы данных Realm .

Optional(Results<Place> <0x7feaaea447c0> (
    [0] Place {
        name = Daniel Webster Highway;
        country = United States;
        lat = 42.72073329999999;
        lon = -71.44301460000001;
    },
    [1] Place {
        name = District Avenue;
        country = United States;
        lat = 42.48354969999999;
        lon = -71.2102486;
    },
    [2] Place {
        name = Gorham Street;
        country = United States;
        lat = 42.62137479999999;
        lon = -71.30538779999999;
    },
    [3] Place {
        name = Route de HHF;
        country = Haiti;
        lat = 18.6401311;
        lon = -74.1203939;
    }
))

Я пытаюсь скрыть выбранный.

Ex. Когда я нажимаю Daniel Webster Highway, я не хочу, чтобы это отображалось в моем списке.

enter image description here

Как можно пойти выше и сделать это в Swift 4?


код

//
//  PlaceDetailVC.swift
//  Memorable Places
//
//

import UIKit
import CoreLocation
import RealmSwift

class PlaceDetailVC: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet weak var address: UILabel!
    @IBOutlet weak var placesTable: UITableView!

    var selectedPlace : Place = Place()
    var selectedTrip : Trip = Trip()

    var distances = [ String ]()
    var places : Results<Place>?

    override func viewDidLoad() {
        super.viewDidLoad()

        address.text = selectedPlace.name

        //register xib file
        placesTable.register(UINib(nibName: "PlaceDetailCell", bundle: nil), forCellReuseIdentifier: "customPlaceDetailCell")

    }

    override func viewDidAppear(_ animated: Bool) {

        load()

        if selectedPlace != nil && places != nil {

            for i in 0..<places!.count {

                let latitude = Double(places![i].lat)
                let longitude = Double(places![i].lon)

                let currentLatitude = Double(selectedPlace.lat)
                let currentLongitude = Double(selectedPlace.lon)

                //print(latitude,longitude,currentLatitude,currentLongitude)

                let coordinate = CLLocation(latitude: latitude, longitude: longitude)
                let currentCoordinate = CLLocation(latitude: currentLatitude, longitude: currentLongitude)

                let distanceInMeters = coordinate.distance(from: currentCoordinate) // result is in meters
                let distanceInMiles = distanceInMeters/1609.344

                distances.append(String(format: "%.2f", distanceInMiles))

            }

        }
    }

    // ---------------------------------------------------------------------------------------------------------
    //MARK - CRUD functions


    //Read
    func load() {
        places  = selectedTrip.places.sorted(byKeyPath: "name", ascending: true)
        //print(places,"<<<")
        placesTable.reloadData()

    }


    // ---------------------------------------------------------------------------------------------------------
    //MARK - Table View Datasource

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

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

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

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

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

        if selectedPlace.name != nil {

            cell.address.text = (places![indexPath.row]["name"] as! String)
            cell.distance.text = distances[indexPath.row]

        }

        return cell
    }

    // ---------------------------------------------------------------------------------------------------------
    //MARK - Table View Delegate

    func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        return true
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        activePlace = indexPath.row
    }



}

Ответы [ 2 ]

0 голосов
/ 06 ноября 2018
var distances = [ String ]()
var places : Results<Place>?

Затем в tableView(_:cellForRow:)

cell.address.text = (places![indexPath.row]["name"] as! String)
cell.distance.text = distances[indexPath.row]

Только не делай этого. Эта информация должна быть синхронизирована.

Вместо этого используйте другой класс / структуру или расширение, которое будет содержать расстояние и место.

var array: [PlaceModel]
struct PlaceModel {
    let place: Place
    let distance: Double //You can use String, but that's bad habit
    //Might want to add the "image link" also?
}

In load():

array.removeAll()
let tempPlaces = selectedTrip.places.sorted(byKeyPath: "name", ascending: true)
for aPlace in tempPlaces {
    let distance = //Calculate distance for aPlace
    array.append(PlaceModel(place: aPlace, distance: distance)
}

Сейчас, в tableView(_:cellForRow:):

let aPlaceModel = array[indexPath.row]
if activePlace == indexPath {
    let cell = tableView.dequeue...
    //Use cellWithImage for that place
    return cell
} else {
    let cell = tableView.dequeue...
    cell.address.text = aPlaceModel.place.name
    cell.distance.text = aPlaceModel.distance
    return cell
}

И сохраняйте эту логику, где хотите, если, если нужно, heightForRow (если вы хотите, например, чтобы все ваши изображения были на 80pt, а остальные на 44pt и т. Д.)

В tableView(_:didSelectRowAt:), добавьте tableView.reloadData() или лучше tableView.reloadRows(at: [indexPath] with: .automatic)

Примечание: код не тестировался, может не компилироваться, но вы должны понять.

0 голосов
/ 06 ноября 2018

Вы можете передать индекс выбранной строки из placeVC в PlaceDetailVC и в

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

    if indexPath.row == passedIndex {
        return 0
    }

    return 70
}

установите высоту ячейки на 0, чтобы скрыть ячейку.

...