Giter Site home page Giter Site logo

Comments (2)

doubleLLL3 avatar doubleLLL3 commented on May 24, 2024 2

Yes, it's only in iOS 15+.
Indeed, I changed the code like below:

// old
open override var canBecomeFirstResponder: Bool {
    return true
}

// new
open override var canBecomeFirstResponder: Bool {
    // Adapted to requestReview in iOS 15+
    if #available(iOS 15, *), NSStringFromClass(type(of: self)) == "SKStoreReviewPresentationWindow" {
        return false
    }
    return true
}

And also, it's ok in live production.

Thanks for your reminder~

from cocoadebug.

philosopherdog avatar philosopherdog commented on May 24, 2024

This code is there to handle the shake gesture. So you're sure this is what's causing your app to freeze only in iOS 15? You might have to fork the project and put an exception for iOS 15 in that line when the SkstoreReViewPresentationWindow is on screen. The other option is you could only show the alert in production builds and since cocoadebug should not be included it won't cause an issue. That's all I can think of without running the code and trying some other things.

from cocoadebug.

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.