Search results for

iPadOS 17.7.7

3,647 results found

Post

Replies

Boosts

Views

Activity

Sporadic app crashes since iOS13/iPadOS 13 for our Testflight builds
Hi. Since iOS 13/iPadOS 13 we're seeing that it sometimes crashes when resumed from background on iOS 13 / iPadOS 13 (13.0, 13.11, 13.1.2). We've not heard of issues from our customers when using the app with iOS 11.x/12.x. Issue is present both on a 6th gen iPad and iPhone X. I've not been able to reproduce it in a simulator. The build below was built with XCode 10.Is there someone here with an idea to how we migth go about debugging this issue? Our code is not present on the stack of the crashing thread as far as I can tell:Incident Identifier: 900F9C19-EE4A-4A9D-B1AB-E834F6387565Beta Identifier: 7194E7C0-152C-43E4-9716-BE2AF29A0BD7Hardware Model: iPad7,5Process: SomeApp [677]Path: /private/var/containers/Bundle/Application/745F3054-AB4B-4A1A-A7AB-2AFD0516706C/SomeApp.app/SomeAppIdentifier: SomeAppVersion: 380 (2.0.16)AppStoreTools: 11A1002bBeta: YESCode Type: ARM-64 (Native)Role: Non UIParent Process: launchd [1]Coalition: SomeApp [620]Date/Time: 2019-10-03 07:10:10.2716 +0200Launch Time:
4
0
7.3k
Oct ’19
Reply to Sporadic app crashes since iOS13/iPadOS 13 for our Testflight builds
I've updated to iPadOS 13.2 and there's a slightly different trace:Exception Type: EXC_BAD_ACCESS (SIGBUS)Exception Subtype: KERN_MEMORY_ERROR at 0x0000000104d75c94VM Region Info: 0x104d75c94 is in 0x104d54000-0x104d78000; bytes after start: 138388 bytes before end: 9067 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL __LINKEDIT 0000000104cec000-0000000104d54000 [ 416K] r--/r-- SM=COW ---> mapped file 0000000104d54000-0000000104d78000 [ 144K] r--/rw- SM=COW ...t_id=c76acaeb Kernel Alloc Once 0000000104d78000-0000000104d80000 [ 32K] rw-/rwx SM=PRVTermination Signal: Bus error: 10Termination Reason: Namespace SIGNAL, Code 0xaTerminating Process: exc handler [286]Triggered by Thread: 5Thread 5 name:Thread 5 Crashed:0 libdyld.dylib 0x00000001bc5505d0 dyld3::closure::ObjCStringTable::hash(char const*, unsigned long) const + 16 (Closure.cpp:1339)1 libdyld.dylib 0x00000001bc550be4 dyld3::closure::ObjCStringTable::getIndex(char const*) const + 52 (Closure.h:841)2 libdyld.dylib 0x00000001bc55
Oct ’19
Reply to UIWebView app for submission.
Hello pyk76,Currently, Apple is not rejecting applications that are submitted to the App Store for Reiview and distribution. There is no gaurentee that this window will last through November, but as of now you are able to submit your application for review and deploy to the App Store.However, it would be a good idea to migrate off of UIWebView and onto an alternative as soon as possible as any one of the Apple iOS or iPadOS updates could drop support for the depricated API and cause for your mobile application to crash.Hopefully this helps!
Oct ’19
iOS13 - Date/Time input: blur event is not fired immediately on dialog close
In iOS <=12 - dismissing the popover would call blur event for date/time inputs.In iOS 13 - blur is not called for input when dismissing the popover. The time/date element is only blurred the next time the user taps another focused element/different elementSample for Safari: https://output.jsbin.com/gufocuSample with objective-C application with WKWebView: https://github.com/HaRaSyMNaZaR/iOSWebkitBlurSample/Environment: iPad Safari and objective-C application with WKWebViewSafari:1. Open https://output.jsbin.com/gufocu in Safari on iPadOS 132. Tap on date input3. Select date4. Tap on other element to close date popoverNativeWebView - Testapp ( https://github.com/HaRaSyMNaZaR/iOSWebkitBlurSample/ )1. Launch the app via Xcode on iOs 13 device2. Tap on date input3. Select date4. Tap on other element to close date popoverActual behavior:- iOS <=12 - blur is fired immediately after closing popover- iOS 13 - blur is not fired immediately after closing popover. One more tap is required to fire blur ev
Topic: Safari & Web SubTopic: General Tags:
6
0
3.8k
Oct ’19
Reply to iOS 13, iPad Pro now says hardware does not support read-write texture?
Same thing here. But it has to do with read_write support, write is supported. Maybe before there has been no warning and read_write was interpreted as just write in cases where this was possible. But I think I used a texture in read_write mode and actually read and wrote to it in a compute kernel on my IPad Pro (1st Gen.) on IOS 12. So I am confused about what is going on here.BTW: Harware is IPad Pro (1st Gen.) on IPadOS 13.1.2, using XCode 11.2 Beta.
Topic: Graphics & Games SubTopic: General Tags:
Oct ’19
Reply to App being rejected due to 4.2 Guideline
I did just that and couldn't find any significant difference. The NYT article in Safari shows social sharing buttons in-line in the article (to the right of the title) whereas the one shown in the app shows it as tucked inside the single share button in the title / navigation area.Here is a screenshot of the two side-by-side compared on iPadOS 13. Left is Safari, right is NYT app.https://imgur.com/a/J0X7LA5
Oct ’19
iPadOs 13.2 Beta NavigationController Crash
We have a live application written in XCode 6.4 which runs fine on iOS 12, 13.1, 13.1.2 but crashes on iOS 13.2 Beta.I have created a skeleton version of the application which does nothing except attempt to show a viewController via a navigationController.This is the code:-18- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {19 _window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];2021 UIViewController *viewController = [[UIViewController alloc] init];22 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];23 viewController.view = view;24 view.backgroundColor = [UIColor redColor];2526 UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];27 [_window makeKeyAndVisible];28 _window.rootViewController = navigationController;2930 return YES;31}The crash happens when the rootViewController is set on the UIWindow on line 28. If lines 27 and 28 are reverse
0
0
824
Oct ’19
In iOS/iPadOS 13.x, change event for input type="text" doesn't get fired when keyboard hide takes place
In iOS/iPadOS 13.x, change event for input type=text doesn't get fired when keyboard hide takes place. We have a web application that runs on iPad, where on post edition in each text field, if user hide/dismisses soft keyboard it behaves like Enter button actions, since hide/dismisses keyboard fires onchange on input. Post iOS/iPadOS 13 update it started failing as change event is not fired any more. Same behavior is also observed in Safari. Prior to iOS/iPadOS 13.x, in all iOS/iPadOS 12.x this feature worked.
Topic: Safari & Web SubTopic: General Tags:
2
0
2.8k
Oct ’19
User-preference-write or file-write-data sandbox access on Mac Catalyst using CloudKit
I am working on adding support for macOS for one of my iOS and iPadOS apps. I got everything working to the point that it would run but as soon as it tried to load the CloudKit data store it crashes with the repeated error setting preferences outside an application's container requires user-preference-write or file-write-data sandbox access. What would be causing this error when running the app on macOS and it tries to load user data from CloudKit? I have allowed incoming and outgoing connections and allowed User Selected Files to read/write. What am I missing besides this?
1
0
3.2k
Oct ’19