Questions tagged [ios]
iOS is the mobile operating system running on the Apple iPhone, iPod touch, and iPad. Use this tag [ios] for questions related to programming on the iOS platform. Use the related tags [objective-c] and [swift] for issues specific to those programming languages.
            6
            questions with bounties
        
        
            1
            vote
        
        
            1
            answer
        
        
            78
            views
        
+100
    Error updating Flutter project: CocoaPods could not find compatible versions for pod "webview_flutter_wkwebview"
                When attempting to update my Flutter project to a new Flutter version, I encountered the following error related to CocoaPods and the webview_flutter_wkwebview plugin:
[!] CocoaPods could not find ...
            
        
       
    
            -2
            votes
        
        
            0
            answers
        
        
            158
            views
        
+100
    Xcode hangs when opening a project - how to reset ALL settings?
                I am running Xcode 15.2 on macOS Sonoma 14.3.1 (23D60) on a M1 Pro Macbook.
When I try creating a new project, or try opening an existing one, Xcode hangs for around 10-15 minutes before opening the ...
            
        
       
    
            0
            votes
        
        
            0
            answers
        
        
            32
            views
        
+100
    How to inject a QR code image for end-to-end testing a QR code scanning app
                End-to-end testing an app with QR-code scanning features seems to be difficult. Is there a way to kind of inject a QR code image into an Android device or simulator to automate this scanning process? ...
            
        
       
    
            0
            votes
        
        
            0
            answers
        
        
            158
            views
        
+500
    "Unable to install" on iOS with error "Application is missing the application-identifier entitlement" when compiling with xcode 14.2 xamarin.ios 16.0
                We have an old school xamarin forms app that is being built using Azure DevOps. We were using the macOS-11 image for iOS builds which defaults to xcode 13.2.1 and xamarin.ios 15.4. But, Apple is now ...
            
        
       
    
            1
            vote
        
        
            1
            answer
        
        
            80
            views
        
+100
    SwiftUI - List multi selection move / reorder (works on Mac but not on iOS)
                How can I enable multi-select and then move / reorder selected items in a List with ForEach (in SwiftUI)?
I tried the following code. On Mac it works fine - it allows me to select multiple items, and ...
            
        
       
    
            2
            votes
        
        
            1
            answer
        
        
            52
            views
        
+100
    How to keep drag preview exactly the same as original item?
                Consider following simplified code for an element that can be dragged
    HStack {
      Icon(icon: .iconDrag)
      Text("Title")
      Spacer()
    }
    .padding(16)
    .onDrag {
      ...