Swift: Infinite Scroll & Pagination Tableview (Xcode 11, iOS) - 2020

Поделиться
HTML-код
  • Опубликовано: 12 дек 2024

Комментарии • 59

  • @mujtubaamin360
    @mujtubaamin360 3 года назад +1

    Best video so far about pagination

  • @longnguyen-od1qy
    @longnguyen-od1qy 3 года назад +2

    THis is so great!!!!!! Gonna implement it on my app now...

  • @christopherteddymienarto9115
    @christopherteddymienarto9115 2 года назад +1

    Thank you! Cheers from Indonesia

  • @JumpStar10
    @JumpStar10 4 года назад +1

    This channel helps me a lot

    • @iOSAcademy
      @iOSAcademy  4 года назад

      Thanks, make sure to sub

  • @pawansaran6584
    @pawansaran6584 3 года назад +2

    Great style and explanation. Thanks a lot!

  • @nestorcalizar6139
    @nestorcalizar6139 2 года назад

    I should've discovered this technique years ago! I've always used the cell approach and i don't find it efficient to add an extra cell just to show the loading spinner during pagination. Well, it's better late than never! Thanks for this!

  • @mohammadimran459
    @mohammadimran459 2 года назад +1

    Thanks a ton !!

  • @GhasimSina
    @GhasimSina Год назад

    Great tutorial, thanks. but why didn't you use willDisplay Cell?

  • @nilaydagdemir3633
    @nilaydagdemir3633 3 года назад +2

    Thank you for this informative video! It helped me a lot.

  • @mertaydayanc1300
    @mertaydayanc1300 3 года назад +1

    Great tutorial thanks!

  • @IhorFedii-n1i
    @IhorFedii-n1i 3 года назад +1

    it was super! thanks!

  • @sovrinfo
    @sovrinfo 2 года назад

    Great video! Thank you a lot

  • @larrystreehouse1124
    @larrystreehouse1124 2 года назад

    How about scrolling up ? Do you guys trying to revise scrolling direction of table view / collection view as well?

  • @dharmikchuahan5630
    @dharmikchuahan5630 4 года назад +1

    thank you sir this is very helpful for me

  • @itananas
    @itananas Год назад

    Thank you so much ❤

  • @MAHOSSAN1
    @MAHOSSAN1 Год назад

    Can you please do same implementation for collection view for horizontal and vertical scroll please ? Thank for current sessions. Good explanation 😊

  • @tjberte
    @tjberte 4 года назад +1

    Solid tutorial. Had to a pause a lot. Might help to slow down and provide the entire process you are going through.

  • @mohitmourya9997
    @mohitmourya9997 4 года назад +1

    Great video! How can we add this functionality with Firestore data?

    • @iOSAcademy
      @iOSAcademy  4 года назад +1

      Thanks, simply query firestore at bottom scroll

  • @sahithiammana9210
    @sahithiammana9210 3 года назад

    Thank you for this...I'm using this for a tableView inside a UICollectionViewCell. When I'm calling the collectionView.reloadItems... the tableView is reloading and going all the way to the top. How do I keep adding at the bottom and not go to top in this case?

  • @BranGaming20
    @BranGaming20 2 года назад +1

    why tableview? can i use pagination on collectionview? what is the different? explain me please, im junior

    • @iOSAcademy
      @iOSAcademy  2 года назад

      Yes, you can use it on any of the two views or others. It just depends on your particular use case

    • @BranGaming20
      @BranGaming20 2 года назад

      @@iOSAcademy thanks a lot it workss!!

  • @pickemparty
    @pickemparty 3 года назад +1

    Do you have one for SwiftUI?!

  • @MauricioChavesDias
    @MauricioChavesDias 3 года назад

    First of all, thank you for this video. Second, I think it was a bit faster for my understanding as a beginner. Why did you use DispatchQueue? Do you create all the components programmactly in the same file/class view? Is that correct?
    I followed all the steps and it worked, but now that I need to add more stuff I don't understand what I just did! hahaha

    • @shurale85
      @shurale85 3 года назад

      He just mocked request activity in global queue ( like url session). Once result is ready it should go to screen that is ui staff. All ui task has to be done in main thread that's why author used dispatching.

    • @ProductsHub365
      @ProductsHub365 3 года назад

      generally ios UIKit is tied to main thread by default .. so what ever changes we need to make on app live ..we should update UI stuff on main.async .. so we dont face any flickering issues while dealing with ui..

  • @rockyrocky1380
    @rockyrocky1380 3 года назад +1

    Nice

  • @ANILKUMAR-vv1fz
    @ANILKUMAR-vv1fz 4 года назад

    Awesome video

  • @Marcel-wz2bh
    @Marcel-wz2bh 4 года назад

    thank you so much for this tutorial! I have a question since I'm implementing this with collection view, there is no footer view like tableFooterView then what do you think I should do? (for the spinner)

    • @arnoldrozon4286
      @arnoldrozon4286 4 года назад +1

      Check out "viewForSupplementaryElementOfKind" of the UICollectionViewDataSource protocol...

  • @harshverma7037
    @harshverma7037 4 года назад

    How can i make a table view just like settings(for eg from Airplane mode till hotspot and then a gap and then from notification till screen time)? Does it need a cocoapod?

    • @1000FRANKOV
      @1000FRANKOV 4 года назад

      No, you just need to have 2 sections(or more) and at tableView dataSource return nil or empty from titleForHeaderInSection and return from delegate's method heightForHeaderInSection height that would be a height of empty space between sections

  • @rounaqjahan944
    @rounaqjahan944 2 года назад

    My scrollViewDidScroll delegate method is automatically invoking. Can anybody tell me what is happening?

    • @ssaai
      @ssaai Год назад

      same to me, at his initial launch

  • @hakeemdeggs9117
    @hakeemdeggs9117 2 года назад +1

    🔥

  • @pkemt9179
    @pkemt9179 2 года назад

    Multiple Sections in UITableView iOS Swift ! - www.iosdeveloperlive.com/2022/02/how-to-use-multiple-sections-in.html

  • @dev_jeongdaeri
    @dev_jeongdaeri 4 года назад

    Third!

  • @babidibuu1032
    @babidibuu1032 4 года назад +1

    First