2,120 questions
Score of 0
0 answers
77 views
Issue with Full Screen Display on iOS 13 - XCode
Our app's minimum supported version of iOS 13, made with XCode. While it works perfectly on iOS 14 and above, I'm encountering an issue on iOS 13 where the app doesn't display in full screen. It seems ...
Score of 0
0 answers
92 views
How to change TurpleView<_VariadicView.Children> to Custom View?
Several Views were received as 'TurpleView<_VariadicView.Children>'.
struct View1: View {
var body: some View {
VStack {
Text("page!")
}
}
}
struct ...
Score of 0
1 answer
1356 views
Google Maps shows "Sorry, we have no imagery here" on iOS13
When running on an iPhone SE with iOS 13, Google Maps briefly displays images for about 1 second and then shows the error: "Sorry, we have no imagery here". It happens on all places, and on ...
Score of 1
0 answers
129 views
JavaScriptCore crash during JSObjectCallAsFunction on IOS 13 IOS14 AND IOS 17
The entry function calls of the crash stack are all JSObjectCallAsFunction, but the subsequent crash location is different on each system. We have suspected a memory problem, but the device still has ...
Score of 0
0 answers
55 views
Trying to use Custom URL for opening my app, APP Delegate is not working
I am using custom url, minimum iOS version is 10, so I am using App delegate. I declared the required thing is
info.plist
app, is opening fine but, I am not getting callback in logs through app ...
Score of 1
1 answer
155 views
iOS 13 ObservedObject is not updating the UI while StateObject doing same in iOS 14
"Resolving UI Update Issues with iOS 13 ObservedObject: Exploring Alternatives to StateObject"
"I've explored several alternatives for StateObject, which is only available in iOS 14. ...
Score of 1
1 answer
1385 views
iOS 13 setting content inset on collection view with compositional layout causes jump
I'm working with compositional layout collection views and need to support back to iOS 13, but I'm running into a strange issue when I update the content inset of the collection view. I'm using ...
Score of 1
1 answer
946 views
SwiftUI equivalent of UIStackView.Distribution.fillEqually
I'm trying to make a simple VStack in SwiftUI where each view in the stack has the same height. The heights should be equal to the least amount of space required for the biggest view in the stack.
My ...
Score of 0
1 answer
552 views
How to update variable in Singleton pattern
I have singleton class has lan variable .it is simple like this
class Settings{
// singelton
static let shared = Settings()
var lan:String? = "ar"
private init(){
...
Score of 1
1 answer
1608 views
MongoDB installation with macOS 13 (Ventura) (command line errors)
Has anyone with macOS 13 (Ventura) managed to install MongoDB? Getting the following error:
==> Installing [email protected] from mongodb/brew
Error: Your Command Line Tools (CLT) does not ...
Score of -1
1 answer
930 views
Swift: How can I change backgroundFetchIntervalMinimum with BGAppRefreshTask
I am changing my deprecated function setMinimumBackgroundFetchInterval() to new one BGAppRefreshTask() but every example is using actual-time like this:
request.earliestBeginDate = Date(...
Score of 0
0 answers
668 views
How to show the same object in different sections by using Diffable data sources?
How to show the same object in different sections by using Diffable data sources?
Here is the Model :-
// MARK: - RecentUsers
struct RecentUsersModel: Codable, Hashable {
let errorCode: Int?
let ...
Score of 0
0 answers
170 views
Search Bar Left Image Tint Change iOS for Dark Mode
Trying to get the left most image icon within the search bar to change color for Dark Mode in iOS 13
Ive tried making a call directly to the searchBar and changing its background color, changing the ...
Score of 1
2 answers
1293 views
Insecure.MD5 in iOS13.0 get incorrect result
When I use Insecure.MD5.hash(data: data) to get a md5 result of a data, I found in iOS 13.0 the result is incorrected, this is my code:
if let data = "helloworld".data(using: .utf8) {
...
Score of 1
1 answer
324 views
How to make a shadow on iOS13
I set shadow on NSMutableAttributedString,
it works on other version of iOS but not iOS 13,
the next is my code
let shadow = NSShadow.init()
shadow.shadowColor = UIColor.red
...