Ios 预选单元格中的项目

Ios 预选单元格中的项目,ios,swift,xcode,Ios,Swift,Xcode,因此,我在预选多个加载项时遇到一些问题。我的目标是加载我的应用程序,并完全预先选择我的滚动条当前所在的单元格 我目前有一个图像图标和它下面的文本,问题是我的图标是预先选择的,并在开始时突出显示,但它下面的文本不是,除非我单击到另一个单元格并单击原始单元格。因此,我知道在swift 3.0中,代码将如下所示,以预先选择我的图标,但没有文本。我尝试了一些事情,但没有成功,所以我删除了所有尝试并预选代码中文本的尝试。我猜了大约四个小时,所以我想与其再浪费一天时间,不如问一下 import UI

因此,我在预选多个加载项时遇到一些问题。我的目标是加载我的应用程序,并完全预先选择我的
滚动条
当前所在的
单元格

我目前有一个图像图标和它下面的文本,问题是我的图标是预先选择的,并在开始时突出显示,但它下面的文本不是,除非我单击到另一个单元格并单击原始单元格。因此,我知道在swift 3.0中,代码将如下所示,以预先选择我的图标,但没有文本。我尝试了一些事情,但没有成功,所以我删除了所有尝试并预选代码中文本的尝试。我猜了大约四个小时,所以我想与其再浪费一天时间,不如问一下

    import UIKit

  class IntroBar: UIView, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {


    lazy var collectionView: UICollectionView = {
    let layout = UICollectionViewFlowLayout()
    let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
    cv.backgroundColor = .black
    cv.dataSource = self
    cv.delegate = self
    return cv
}()

let cellId = "cellId"
let imageNames = ["Ex1","Ex2","Ex3","Ex4"]
let titles = ["Ex1-1","Ex1-2","Ex1-3","Ex-1-4"]

var loginController: LoginController?


override init(frame: CGRect) {
    super.init(frame: frame)

    collectionView.register(MenuCell.self, forCellWithReuseIdentifier: cellId)

    addSubview(collectionView)
    addConstraintsWithFormat("H:|[v0]|", views: collectionView)
    addConstraintsWithFormat("V:|[v0]|", views: collectionView)


    let selectIndexPath = IndexPath(item: 0, section: 0)
    collectionView.selectItem(at: selectIndexPath, animated: false, scrollPosition: UICollectionViewScrollPosition())



    setupHorizontalBar()
}

var horizontalBarLeftAnchorConstraint: NSLayoutConstraint?

func setupHorizontalBar() {
    let horizontalBarView = UIView()
    horizontalBarView.backgroundColor = UIColor(white: 0.95, alpha: 1)
    horizontalBarView.translatesAutoresizingMaskIntoConstraints = false
    addSubview(horizontalBarView)

    horizontalBarLeftAnchorConstraint = horizontalBarView.leftAnchor.constraint(equalTo: self.leftAnchor)
    horizontalBarLeftAnchorConstraint?.isActive = true

    horizontalBarView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
    horizontalBarView.widthAnchor.constraint(equalTo: self.widthAnchor, multiplier: 1/4).isActive = true
    horizontalBarView.heightAnchor.constraint(equalToConstant:4).isActive = true
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    loginController?.scrollToMenuIndex(indexPath.item)
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return 4
}


func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) as! MenuCell

    cell.imageView.image = UIImage(named: imageNames[indexPath.item])?.withRenderingMode(.alwaysTemplate)

    cell.imageLabel.attributedText = NSMutableAttributedString(string: titles[indexPath.item], attributes: [NSFontAttributeName: UIFont.systemFont(ofSize: 10, weight: UIFontWeightHeavy), NSForegroundColorAttributeName: UIColor.black])
    cell.imageLabel.textAlignment = .center
    cell.tintColor = .darkGray

    return cell
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    return CGSize(width: frame.width / 4, height: frame.height)
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    return 0
}


required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

}



class MenuCell: BaseCell {

let imageLabel: UILabel = {
    let label = UILabel()
   return label
}()

    let imageView: UIImageView = {
    let iv = UIImageView()
    iv.image = UIImage(named: "Ex1")?.withRenderingMode(.alwaysTemplate)
    iv.tintColor = .darkGray
    return iv
}()

override var isHighlighted: Bool {
    didSet {
        imageView.tintColor = isHighlighted ? .white : .darkGray
        imageLabel.textColor = isHighlighted ? .white : .black
    }
}

override var isSelected: Bool {
    didSet {
        imageView.tintColor = isSelected ? .white : .darkGray
        imageLabel.textColor = isSelected ? .white : .black
    }
}


    override func setupViews() {
        super.setupViews()

        addSubview(imageLabel)
        addSubview(imageView)
        addConstraintsWithFormat("H:[v0(33)]", views: imageView)
        addConstraintsWithFormat("V:[v0(33)]", views: imageView)
        addConstraintsWithFormat("H:[v0(75)]", views: imageLabel)
        addConstraintsWithFormat("V:[v0(50)]", views: imageLabel)
我为我的刻薄的代码破解工作道歉。。。我几天前才开始,所以我真的只是在尝试和错误。另外,如果您有任何关于清理这些代码的见解,我们将不胜感激

这就是目前的情况


不允许我发布我的第三张图片,所以我希望图片一看起来像图片二,除了最初启动时。

cellForItem
方法中添加
cell.isSelected=true

另外,如果需要手动选择单元格,我也可以在
cellForItem
方法中进行选择。因此,您不需要像以前那样手动指定
indepath
,因为方法本身有相应的
indepath

将您的
collectionView.selectItem(位于:selectIndexPath,动画:false,scrollPosition:UICollectionViewScrollPosition())
移动到渲染时要选择的单元格

func collectionView(_ collectionView: UICollectionView, cellForItemAt
                    indexPath: IndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, 
                                               for: indexPath) as! MenuCell

    cell.imageView.image = UIImage(named: imageNames[indexPath.item])?.withRenderingMode(.alwaysTemplate)

    cell.imageLabel.attributedText = ...
    cell.imageLabel.textAlignment = .center
    cell.tintColor = .darkGray

    if wantThisCellSelected == true {
       cell.isSelected = true
       collectionView.selectItem(at: indexPath, animated: false,
                                  scrollPosition: UICollectionViewScrollPosition())
    } else {
       cell.isSelected = false
       collectionView.deselectItem(at: indexPath, animated: false)
    }
      return cell
   }

添加方法
cell.isSelected=true
将在渲染时为我选择所有单元格。我只需要在开始时渲染字符串“Ex1”的第一个单元格。但是话虽如此,我还是将
collectionView.selectItem(at:selectIndexPath,animated:false,scrollPosition:UICollectionViewScrollPosition())
let-selectedIndexPath=IndexPath(item:0,section:0)
一起移动到
cellForItem
并点击BAM!它就像一个符咒。我非常感激!!疯狂的事情是多么简单却能让你拉扯头发。。。Lol.@UnknownBubar是另一种优雅的方式,如果您特别需要第0节的项目0。你可以使用这样的东西:
if indexath.section==0&&indexath.item==0{//select cell
Ahhh!哦,好的,是的。看起来不错,我喜欢。非常感谢你,伙计!!