Git Product home page Git Product logo

Comments (5)

lixiang1994 avatar lixiang1994 commented on May 22, 2024

感谢你的建议.
你说的那个问题确实存在 我在下一个版本中会修复.
关于你的建议 我最开始也是用的willShow通知 , 后来我记得因为第三方键盘的问题导致位置计算很不好处理 所以改成了UIKeyboardDidChangeFrameNotification , 这也导致键盘已经弹出 才做出改变 , 这个问题我争取下一个版本解决掉.

关于你说的[tf becomeFirstResponder] 问题 我建议你暂时增加一个延迟处理

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.4f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
                    
 [tf becomeFirstResponder];
 });

from leealert.

lixiang1994 avatar lixiang1994 commented on May 22, 2024

关于你提出的问题和建议 在新的版本中已经解决(V1.0.6)

from leealert.

noname004 avatar noname004 commented on May 22, 2024

感谢作者。。。另外再给个建议。。是否有考虑给alert做windowLevel做设置,,因为原生的可以在任意view上(包括比keywindow更高层级的uiwindow上)模态化显示出alert框。。现在不知道如果设置了一个更高层级uiwindow 并在这个win的rootVC.view上事件触发 showAlert是否会被高层级的uiwindow完全遮挡?

from leealert.

lixiang1994 avatar lixiang1994 commented on May 22, 2024

这个建议很好 , 目前我的alert的windowLevel是UIWindowLevelAlert .

from leealert.

lixiang1994 avatar lixiang1994 commented on May 22, 2024

下一个版本我会增加windowLevel的设置

from leealert.

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.