We use XCode 15.2 to build our application, but we found that the app crashes on iOS 12.1.1, while it works without crashing on iOS 12.5.7. We discovered that the crash is related to ImageLoaderMachO::doModInitFunctions. We're not sure what is causing this.
Post
Replies
Boosts
Views
Activity
Hi, I'm an iOS developer who found an issue with the regularExpression option in the range method of the string. The return value differs between iOS 17 beta 1 and iOS 16, even when using the same regex pattern and input.
Build with XCode14.2
// Regex pattern to check thousand amount pattern but comma is optional.
// 10000 => Correct
// 1000,0 => Incorrect
let regex = "^[+-]?[0-9]{1,3}(?:,?[0-9]{3})*$"
let rangeOf10000 = "10000".range(of: regex, options: .regularExpression)
let rangeOf100000 = "100000".range(of: regex, options: .regularExpression)
// in iOS 17.0 developer beta
// rangeOf10000 = nil
// rangeOf100000 = got an object normally.
// in iOS 16.2
// rangeOf10000 = got an object normally.
// rangeOf100000 = got an object normally.
I don't know if the defect in the range method or my missing something in the regex pattern such a long time, but I wonder why rangeOf10000 is nil in iOS 17 beta 1.