Post

Replies

Boosts

Views

Activity

Subscription "Waiting for review" status stuck after App has been approved
My app was approved a week ago for the first version, and the subscriptions were submitted along with it. However, the subscriptions have been stuck in the “Waiting for Review” status for a week. I submitted a request under the “App Review” topic, but I haven’t received any response. What should I do next? Yesterday, version 1.0.1 of my app was approved. I thought that submitting another version might resolve the issue, but it didn’t. This is so frustrating. Any advice?
1
0
119
1w
run Javascrip on Safari
Hello, I am experiencing an issue when running a script on Safari, specifically WebKit. Here is a sample HTML code: <!DOCTYPE html> <html lang="en"> <head> <script> function delayedFocus(e) { e.preventDefault(); setTimeout(function() { e.target.focus(); }, 1000); // Adjust the delay time as needed (in milliseconds) } </script> </head> <body> <ul> <li> <input type="text" id="testtext" onmousedown="delayedFocus(event)"> </li> </ul> </body> </html> The logic behind this script is to introduce a 1-second delay when the user clicks on the textbox. After 1 second, the keyboard should appear. Testing on Android mobile devices shows the expected behavior. However, on iPhones, the textbox receives focus, but the keyboard does not appear. This issue has been observed on various iOS versions, with the script working only on iOS 15. If you have any insights or solutions to address this compatibility issue, it would be greatly appreciated. Thank you.
0
0
674
Feb ’24