Datetime Picker not Showing in UIWebView - safari

My website is embedded in an iOS App using UIWebView, but devices running (since the update) iOS 14 are not showing the datetime picker, contrary to Safari App for iOS 14.
Any idea of why this is not working anymore?
Thanks in advance.
iOS 14 app screeshots:
Safari (expected in the UIWebview App!):
UIWebview App (Unexpected?):

Related

annotationView callout transparent in iOS 13

Screen shot above shows annotationView callouts in my app appearing transparent in iOS 13. The app is currently in the store, and has been for many years. The last code change was March of 2018, and testing in simulator and on device (using direct usb connection) do not show this problem as seen below:
I have added the proper device support files to version of Xcode used to submit the app in March 2018 so I could build/run the app on a device running ios13 - annotationView callouts work as expected! But using same device and the version of the app from the app store, annotationView callouts show transparent.
Also tested the latest app store version of the app on devices running iOS 9 though iOS 12 and as expected, annotationView callouts work as they should.
I have deleted and reinstalled app via the app store on an iOS 13 device - problem persists.
I'm looking for ideas on how to track down this phenomena. I'm a bit stumped.
Seems to be that in the current iPad OS (13.4) this error is fixed by apple.

iOS app with iphone target only (non-universal) renders fine on ipad iOS7 but not on ipad iOS8

When I run my targeted iphone app on an ipad with iOS7, it renders in iphone mode and this is exactly what I want. In fact, when I print the size of the window bounds, it correctly prints out 320 x 480. However, when I run the same app on an ipad with iOS8, the app goes into full screen mode as the window bounds are now 1024 x 768.
Do you know how I can restrict the iOS8 ipad to render the app as an iphone only app and not a full screen ipad app?
NOTE: I did my testing on the same iPad device before and after the upgrade from iOS7 to iOS8. I'm also consistently able to repro this with the ipad simulators
This might be caused from a known bug in XCODE-6 that is fixed in XCODE-6.1 beta. If you are using the storyboard launch file, the iOS 8 iPad will not be scaled from iPhone mode, but will be treated as an actual iPad. To fix the bug, use static launch images by hitting use asset catalog on the following screen in the target options, general tab:
After this, make sure to have your static launch images uploaded to the .xcassets, or update to xcode 6.1 beta to fix the issue.

How to integrate google location autocomplete for ios 7

am unable to integrate SPGoogleplacesautocomplete in my app ios 7 storyboard
Atlast I found on the GITHUB
But On Scroll view it will work for iphone5 slight problem with iphone4
https://github.com/StephenAsherson/SAGooglePlacesTableView

iOS7 Smart Banner Disappearing

We are having an issue where smart banners appear in Safari on iOS6, but when testing in Safari on iOS7 with non 5s devices the banner briefly appears (sort of a placeholder without content) and then disappears. We have tested other sites other than ours and it seams to be consistent behavior. dropbox.com cnn.com usatoday.com all have smart banners visible with Safari iOS6, but that are disappearing when reached from Safari iOS7 from iPhone4, iPhone4s, iOS Simulator, iPhone5.
Is anyone else seeing this behavior?
I was having the same behaviour on iOS8.
It turns out that the ID I grabbed from the app store url was prefixed with "id". Once I removed that prefix it started working as expected.
In this example URL
http://itunes.apple.com/ca/app/ditchtv/id1042361181?mt=8, the meta tag should be:
<meta name="apple-itunes-app" content="app-id=1042361181">
I hope this helps!
I saw this same problem, but only for apps that have not been built with the iOS7 SDK. My older apps that have been compiled with the iOS <= 6 SDK will show an app banner on phones running iOS <= 6, but only apps compiled with iOS SDK == 7 will show on a phone running iOS 7.

iPhone app crashes after splashscreen

My iPhone App works fine on iOS 5, but crashes after Splashscreen on iOS4. (using PhoneGap) (using HockeyApp.net).
I am new for ios development.
I have developed an ios app with deployment target 4.0.
It is perfectly installed and working on iPad 2 (os-5.1) and iPod touch ([4g] os-5.0.1).
It is installing on iPhone 4 (os-4.2.6) and iPod touch ([2g] os-4.2.1) but not working. It shows the splashscreen, but crashes after that.
I have addded my own log function in code and found that it is crashed before going inside didFinishLaunchingWithOptions function.
I am using HockeyApp.net to download the ipa file.
I am not getting what is the problem exactly, the following is my AppDelegate.m file.
AppDelegate.m : https://gist.github.com/4343470
The crash report:
Crash Report: https://gist.github.com/4343472
Please help me out this.
Thank you in advance.
The crash is because CDVCordovaView is a subclass of UIWebView, and UIWebView's scrollView property is only defined starting in iOS 5. Somewhere in your code you are trying to access the scrollView property, which causes the crash. Check if the CDVCordovaView object respondsToSelector:#selector(scrollView) before you access scrollView, to prevent the crash.