Git Product home page Git Product logo

Comments (5)

otymartin avatar otymartin commented on June 8, 2024

I guess a simpler question is, with a similar layout, does not snapchat populate their multiple UI without (performing network requests, mapping, sorting e.t.c) while user can freely swipe between VCs free of lag and freezes?

from pageboy.

msaps avatar msaps commented on June 8, 2024

@otymartin Hi 😄

The view lifecycle behaviour is managed by UIPageViewController, I'm not sure the behaviour is documented for what view controllers it will initialise and loadView depending on the page index, but this shouldn't really be a problem.

Performing network requests also shouldn't cause an issue with Pageboy UI performance, are you sure that the requests are executing in the background? Have you tried running Instruments and seeing what is using significant amounts of time when paging between view controllers? Check out the Time Profiler 🕙

Let me know how you get on..

from pageboy.

farshadmb avatar farshadmb commented on June 8, 2024

@otymartin Hi
I agree with @msaps. I think you have a bunch of codes which work on the main thread. As we know apple mention that main thread is for presenting and rendering layout and UI. Don't use main thread for the logical purpose.
Please put your sample code here to understand the issue. Also, make you solve it.
I use AFNetworking or Almofire for networking.

Check out this repos Awsome iOS

from pageboy.

otymartin avatar otymartin commented on June 8, 2024

@msaps @farshadmb
The code that was really causing me this headache was mapping an array after a network request finished. I managed a temporary fix (Actually it was a total accident i still dont know what fixed it) by just moving all my network code to the defaultPageIndex and not updating other childControllers until they come in view. It seems to work well but will probably need to dig deeper to see why this was a problem in the first place.

@farshadmb I stuck everything in the background and no luck🙈🙈

let sessions = results.map { Flex(partner: Person($0.object(forKey: FlexKey.partner) as! PFUser), flex: Person($0.object(forKey: FlexKey.flex) as! PFUser), session: $0) }

Full Disclosure. Im using IGListKit so the data mapped there eventually I would do IGListKitAdapter.performUpdates(animated: true, completion: nil) to show it on my childController's collectionView (Which is not in view).

from pageboy.

farshadmb avatar farshadmb commented on June 8, 2024

@otymartin Hi
Do you have any remote desktop application such as TeamViewer. I will join your session then I see your application performance. maybe I could fix it

from pageboy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.