Я хочу создать этот скользящий пользовательский интерфейс в xcode с использованием swift, какой sholud я использовал? collecntionView или TableView?

#ios #swift #xcode #tableview #collectionview

#iOS #swift #xcode #tableview #collectionview

Вопрос:

я хочу создать точный экран в моем приложении ios с помощью xcode amp; swift, я не могу его создать, что мне использовать? CollectionView или ScroolView?

импортируйте UIKit

 class ViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout{


@IBOutlet weak var newCollectionView: UICollectionView!






override func viewDidLoad() {
    super.viewDidLoad()
    newCollectionView.delegate = self
    newCollectionView.dataSource = self
    // Do any additional setup after loading the view, typically from a nib.
}


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

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

    return cell
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    return CGSize(width: view.frame.width, height: view.frame.height)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    return 0
}

}
  

введите описание изображения здесь

Комментарии:

1. Вы можете использовать UIScrollView в horizontal. И попробуйте округлить координаты вложенных представлений и после перетаскивания использовать let p = CGPoint(x: yourX, y: 0); scrollView.setContentOffset(p, animated: true) . Где yourX = scrollItems[i].width * i ;

2. не могли бы вы, пожалуйста, описать эту вещь подробнее, пожалуйста?

3. Я ответил ниже. Я думаю, вы можете добавить свои точки поверх ViewController и изменить это в methodAnimation .

4. Как вы решили свою проблему?

5. Не могли бы вы, пожалуйста, поделиться со мной своим исходным кодом, чтобы anujbidkar8@gmail.com или поделитесь ссылкой на github, спасибо

Ответ №1:

Это мой класс. Это работает полностью. Также я добавил изображение раскадровки. Ссылка на мой проект на github:https://github.com/Agisight/scroller.git

 class ViewController: UIViewController, UIScrollViewDelegate {
    @IBOutlet weak var scroll: UIScrollView!

    @IBOutlet var btns: [UIView]!
    override func viewDidLoad() {
        super.viewDidLoad()
        scroll.delegate = self
    }
    func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
        methodAnimation()
    }

    func scrollViewWillBeginDecelerating(_ scrollView: UIScrollView) {
        methodAnimation()
    }

    func methodAnimation() {
        if btns.count == 0 {return}

        var i = 0
        // i – calculate it, it is your visible/desirable view.
        // here is variant of code
        let dragOffset = view.frame.width * 0.5 // callibrate it for you
        let offX = scroll.contentOffset.x
        i = Int(offX   dragOffset) / Int(view.frame.width)

        i = max(0, min(i, btns.count - 1))
        let yourX = btns[i].frame.width * CGFloat(i) // ()
        let p = CGPoint(x: yourX, y: 0);
        scroll.setContentOffset(p, animated: true)
    }
}
  

Мой UIViewController со прокруткой