Как исправить ограничения, чтобы не показывать повторяющиеся слова? - PullRequest
1 голос
/ 01 апреля 2019

Мой контроллер просмотра выглядит странно на iPhone XR. Я не знаю почему, но слова дублируются и перезаписываются, но не в старых версиях.

Дублированные слова:

IMG:
(Нажмите на изображение, чтобы увеличить)

Я реализовал панель поиска и имею базовое табличное представление имен пользователей.

Вот скриншоты моих ограничений для метки.

Constraints

Constraints

Swift:

class FindFriendsViewController: UIViewController {

var users = [User]()

@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var searchBar: UISearchBar!

var searchItem = [String]()
var searching = false

override func viewDidLoad() {
    super.viewDidLoad()

    tableView.tableFooterView = UIView()
    tableView.rowHeight = 71

    let tap = UITapGestureRecognizer(target: self.view, action: #selector(UIView.endEditing(_:)))
    tap.cancelsTouchesInView = false
    self.view.addGestureRecognizer(tap)
}

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

    UserService.usersExcludingCurrentUser { [unowned self] (users) in
        self.users = users

        DispatchQueue.main.async {
            self.tableView.reloadData()
          }
       }
    }
 }

extension FindFriendsViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if searching {
        return searchItem.count
    } else {
        return users.count
    }
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "FindFriendsCell") as! FindFriendsCell

   // let user = users[indexPath.row]

    var usernamesArr = [String]()
    for user in users {
        usernamesArr.append(user.username)
    }

    if searching {
        cell.textLabel?.text = searchItem[indexPath.row]
    } else {
        cell.textLabel?.text = usernamesArr[indexPath.row]
        cell.delegate = self
        configure(cell: cell, atIndexPath: indexPath)
    }

    return cell
}

func configure(cell: FindFriendsCell, atIndexPath indexPath: IndexPath) {
    let user = users[indexPath.row]

    cell.usernameLabel.text = user.username
    cell.followButton.isSelected = user.isFollowed
     }
  }

extension FindFriendsViewController: FindFriendsCellDelegate {
func didTapFollowButton(_ followButton: UIButton, on cell: FindFriendsCell) {
    guard let indexPath = tableView.indexPath(for: cell) else { return 
 }

    followButton.isUserInteractionEnabled = false
    let followee = users[indexPath.row]

    FollowService.setIsFollowing(!followee.isFollowed, fromCurrentUserTo: followee) { (success) in
        defer {
            followButton.isUserInteractionEnabled = true
        }

        guard success else { return }

        followee.isFollowed = !followee.isFollowed
        self.tableView.reloadRows(at: [indexPath], with: .none)
      }
   }
}

extension FindFriendsViewController: UISearchBarDelegate {
func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
    var usernamesArr = [String]()
    for user in users {
        usernamesArr.append(user.username)
    }
    searchItem = usernamesArr.filter({$0.lowercased().prefix(searchText.count) == searchText.lowercased()})
       searching = true
       tableView.reloadData()
    }
}

1 Ответ

0 голосов
/ 01 апреля 2019

Как сказал @Prashant Tukadiya, textLabel - это UITableViewCell Outlet, и если вы используете собственную ячейку, вы не должны ее использовать.Вот что вы должны сделать:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "FindFriendsCell") as! FindFriendsCell

    var usernamesArr = [String]()
    for user in users {
        usernamesArr.append(user.username)
    }

    if searching {
        cell.usernameLabel.text = searchItem[indexPath.row]
    } else {
        cell.delegate = self
        cell.usernameLabel.text = usernamesArr[indexPath.row].username
        cell.followButton.isSelected = usernamesArr[indexPath.row].isFollowed
    }

    return cell
}
...