Post

Replies

Boosts

Views

Activity

Reply to How Intercept all the Http Request/Responce(GET,POST) in a website which loads on WkWebView from swift.
You can do this in the navigation delegate method decidePolicy : optional func webView( _ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void ) the navigationAction parameter contains the URLRequest which contains the httpBody of the POST request.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’22
Reply to Is it possible to develop a recorder calls app?
Even if this is often illegal in lot of place, I think the system prevent access to micro during device call. The only legal way is to use the carrier recorder : you call yourself, wait for recorder to start, then call other person and use conference mode.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to How to differentiate that carrier is e-sim or physical sim
May I ask why you want this ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Xcode Warning for iOS 16 : Please switch to an asynchronous networking API such as URLSession
You can use : `let (data, response) = try await URLSession.shared.data(from: url)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Can no longer compile for iOS 9 after Xcode update
In the release notes of xCode 14 it is stated that it can only debug on iOS 11 and later. So it can not compile for iOS 10, 9 or previous. If you need iOS 9 supports, download earlier version of xCode from download section of Apple developer site.
Replies
Boosts
Views
Activity
Sep ’22
Reply to TestFlight is not Showing build
What happens on the Mac ? Did you see any message or window that stated that upload was done ?
Replies
Boosts
Views
Activity
Sep ’22
Reply to Ventura usb-c to HDMI doesn’t work
Did you submit a feedback about this ?
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Bizarre App Rejection
Did you use the name of the organisation you work for for the name of your app ? It may be a rule that your app name may confuse people thinking they are using a legitimate app from the organisation.
Replies
Boosts
Views
Activity
Sep ’22
Reply to How to prettify JSON in swift
Try : let encoder = JSONEncoder() encoder.outputFormatting = .prettyPrinted
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to How Intercept all the Http Request/Responce(GET,POST) in a website which loads on WkWebView from swift.
You can do this in the navigation delegate method decidePolicy : optional func webView( _ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void ) the navigationAction parameter contains the URLRequest which contains the httpBody of the POST request.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Do I need to have the full app built, submitted and approved to launch pre-order?
Did you read app pre order ?
Replies
Boosts
Views
Activity
Sep ’22
Reply to NFTs on the app store
If the user want to use the image associated with the NFT this is just like using an image from its photo library. As long as there is no transaction and the review team can test your app it should be ok.
Replies
Boosts
Views
Activity
Sep ’22
Reply to How to modify the BundleID of an online application?
Could you be more precise. The bundle is of an installed app can not be changed.
Replies
Boosts
Views
Activity
Oct ’22
Reply to Port 22:Connectio Refused.
Connecting via ssh (port 22) requires that you use a private key for which the associated public key is installed in the ssh configuration of the destination server account.
Replies
Boosts
Views
Activity
Oct ’22
Reply to Does Apple allow third-party payment integration to access app features?
I think it may require you to add (not replace) IAP in your app. It may depends if the app requires this subscription to work or not.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Auto orientation lock
This would be energy consuming to have constant FaceId detection system working. You could integrate this for an app but I think it may drain battery.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22