Posts

Post not yet marked as solved
0 Replies
127 Views
I am trying to add a framework to my project but I am facing 'Could not find module 'StandardCheckoutKit' for target 'arm64-apple-ios'; found: x86_64-apple-ios-simulator' Error This framework works perfectly in Simulator but didn't work on real devices (iPhone XS Max) Added framework using drag and drop (downloaded from the browser) I am not installing the framework via pods (not available)
Posted Last updated
.
Post marked as solved
2 Replies
96 Views
How to get the selected image name from the photo library using PHPicker. is it possible? or I want alternate solution
Posted Last updated
.
Post marked as solved
1 Replies
255 Views
I using UIMenu() for the dropdown concept, so I want when I press uimenu button list some details but when I press the button not work initial touch, then when i touch the second time it's working. how to solve this kindly let me know @IBOutlet weak var tapButton: UIButton! @objc func tapButtonAction() {         let action = UIAction(title: "Action") { _ in    }         let menu = UIMenu(title: "Tap", options: .displayInline, children: [action])         tapButton.showsMenuAsPrimaryAction = true         tapButton.menu = menu     }
Posted Last updated
.