680 questions
0
votes
1
answer
2k
views
Xcode26 Cannot launch '/xxx/xxx.app': Unspecified
Xcode 26 crashes immediately when running on devices with iOS versions earlier than 13. Is this because Xcode 26 no longer supports iOS versions prior to iOS 13? There were no issues when using the ...
1
vote
0
answers
145
views
Take photos while AVCaptureMovieFileOutput is recording in iOS 12
I am trying to take photos while an AVCaptureMovieFileOutput is recording, but everything I've tried has either stopped the recording or not been able to retrieve any frames. I am working with an ...
0
votes
1
answer
534
views
Crash on start on iOS 12
Since compiling our app for iOS 17, Devices running iOS 12 crash on start. The debugger doesn't even call didFinishLaunchingWithOptions before the crash.
Seems to point to ImageLoaderMachO:: error
...
1
vote
0
answers
319
views
Xcode 14.3 XCUITests not recognising buttons on iOS12 devices
Since updating to Xcode 14.3, my UITests are failing to tap buttons on devices running iOS12!
Here is my code which works fine on other devices running iOS16 and also when using Xcode 14.2:
@...
0
votes
1
answer
440
views
Asto SSR generated code doesn't run on older versions of iOS
I am hosting astro SSR site on Netlify. It works well everywhere except when I test on iPhone 6 and older. Basically all script executions are stopped and the site is no longer interactive.
Errors ...
2
votes
1
answer
2k
views
App crash when I run on iOS 12.5.5 version - dyld: Symbol not found: ___chkstk_darwin
after updating Xcode 13.2.1 (13C100) when I run my app on iPhone 6(12.5.5) it's showing an error and the app is crashing.
dyld: Symbol not found: ___chkstk_darwin
Referenced from: /private/var/...
0
votes
1
answer
1k
views
abort_with_payload : app built with Xcode 13.2.1 crash after launch on iOS12.5 (real device only)
The app crashes when users download from AppStore and try to open the app, it shows launch screen and then crashes.
This happens only with real devices running iOS12.* App was built with Xcode 13.2.1.
...
0
votes
0
answers
79
views
TextInput's autoCorrect's behaviour is different in iPhone SE compared to other iPhone modals
I have TextInput with autoCorrect prop
<TextInput
placeholder={placeholderText}
value={this.props.value}
onChangeText={this.props.onChange}
autoCorrect={false}
/>
If the ...
3
votes
3
answers
2k
views
App crashes on iOS 12 and below after building with Xcode 13
An app which was running successfully on iOS 9-15 now crashes on launch on iOS 9-12 when building with Xcode 13.1 (on M1 Pro) that I just upgraded to.
It crashes on unarchive of the main storyboard ...
1
vote
0
answers
323
views
React Native iOS TestFlight app is crashing on iOS 12.x.x versions only
React Native iOS TestFlight app is crashing on my iPad Mini 2, iOS 12.5.4. It is working fine in all iOS 13, 14 and 15 versions
XCode console log obtained:-
Bootstrapping failed for <...
0
votes
1
answer
107
views
Disable Tab Bar storyboard appearance setting programmatically
My app is required to be iOS 12.0 compatible and has a tab bar. Since iOS 13.0, the UITabBarAppearance() can be used to change its appearance. In the storyboard, I have Standard selected as ...
0
votes
0
answers
473
views
Ios chrome getting error getUserMedia is not implemented in this browser?
window.navigator.mediaDevices.getUserMedia({ audio: true }).then(function (stream) {
console.log(stream)
}).catch(function (err) {
console.error(err);
});
It's working fine in the latest ios 15 ...
3
votes
1
answer
852
views
App builded by Xcode version 13 crashed on ios 12
My app is working fine on iOS 15 and 14, maybe 13 too. But when I run on older device using iOS 12, its crash on start, even before didFinishLaunchingWithOptions is triggered. It was working fine the ...
1
vote
0
answers
229
views
UIImage(named: ) returns nil in cocoapod library on ios 12.4-5
I have my Cocoapod library, In this library I access my images this way:
let bundle = Bundle(identifier: "com.mylib.mylib")
let image = UIImage(named: "image_name", in: bundle, ...
1
vote
1
answer
1k
views
UIStackView rounded corners for deployment target 12.3
I can easily create a stackview with rounded corners in iOS 14 by doing:
stackView.layer.cornerRadius = 10
stackView.clipsToBounds = true
without doing anything else. But since I want my app ...