Post

Replies

Boosts

Views

Activity

Reply to Certificates
I'm afraid you can't do that, Steeve. If you could, then it wouldn't be a very secure certificate, would it?! It's down to you, to "Keep it secret. Keep it safe."
Topic: Code Signing SubTopic: General Tags:
Dec ’21
Reply to Certificates
I'm glad I could help, @Euler1200. Just for reference, when you mark a forum answer as correct, you mark the correct answer, not your response to it! (This keeps the forum working smoothly, and is also a thank-you to the forum user who took time out to help you.)
Topic: Code Signing SubTopic: General Tags:
Dec ’21
Reply to Cannot create a temporary .itmsp package for my app with Transporter
Hi again Steeve, "com.baobabeducation" does not look like a valid Bundle ID. It looks like a Bundle ID prefix, which would normally be followed by the app-name, something like: com.baobabeducation.MathVenture // or whatever... (By the way, from your previous question, when you mark a forum answer as correct, you mark the correct answer, not your response to it!)
Dec ’21
Reply to Safari Extension: Please make sure your manifest.json file contains valid syntax
Using an online JSON validator, your example threw up several errors. So it looks like your json syntax is indeed invalid, as your error message says. Try: "38": "images/toolbar-icon-38.png", Remove trailing comma (line 23) "*://www.linkedin.com/*", Remove trailing comma (line 62) "https://api.mixpanel.com/*", Remove trailing comma (line 82) Other JSON parsers might be more forgiving, but I would suggest fixing those issues, then trying again.
Topic: App & System Services SubTopic: General Tags:
Dec ’21
Reply to Prevent taking a screenshot on iPhone and iPad
This question has been asked many times. It is not possible to prevent screenshots and screen recording on iOS. And yet, ScreenShieldKit seems to have achieved this! That suggests, at the least, that it is very difficult, and there is no "simple" coding solution. I suggest that you investigate ScreenShieldKit, and see if their pricing model suits your needs (depending on how important this feature is, for your app).
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’21
Reply to How do I fill in CXProviderDelegate in SwiftUI?
As @OOPer says, a CXProviderDelegate must be an NSObject, so it can't be a SwiftUI View. It would have to be a class, perhaps as (part of) your Model or ViewModel (assuming that you are using MVVM). Remember that SwiftUI is only providing the user interface for your app. SwiftUI is not doing all the behind-the-scenes processing!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21
Reply to XCode for Windows PC
Xcode requires macOS, it will not run on Windows OS.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Certificates
I'm afraid you can't do that, Steeve. If you could, then it wouldn't be a very secure certificate, would it?! It's down to you, to "Keep it secret. Keep it safe."
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Optional somehow becomes nil after passing through a condition to prevent that
More information is needed: Can we see the definition of self.player? And the code of the enclosing View? And the View that ".onAppear" is attached to?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Button.keyboardShortcut(.defaultAction) doesn't properly work on macOS Monterey
Still an issue. Monterey 12.0.1 Xcode 13.1 (13A1030d)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Certificates
I'm glad I could help, @Euler1200. Just for reference, when you mark a forum answer as correct, you mark the correct answer, not your response to it! (This keeps the forum working smoothly, and is also a thank-you to the forum user who took time out to help you.)
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Cannot create a temporary .itmsp package for my app with Transporter
Hi again Steeve, "com.baobabeducation" does not look like a valid Bundle ID. It looks like a Bundle ID prefix, which would normally be followed by the app-name, something like: com.baobabeducation.MathVenture // or whatever... (By the way, from your previous question, when you mark a forum answer as correct, you mark the correct answer, not your response to it!)
Replies
Boosts
Views
Activity
Dec ’21
Reply to Detect if app was installed through TestFlight
What solution are you using for iOS?
Replies
Boosts
Views
Activity
Dec ’21
Reply to Picker doesn't show and hide the selection after item being selected in swiftUI
Better to post your question here, rather than expecting people to follow a link to an external site.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Safari Extension: Please make sure your manifest.json file contains valid syntax
Using an online JSON validator, your example threw up several errors. So it looks like your json syntax is indeed invalid, as your error message says. Try: "38": "images/toolbar-icon-38.png", Remove trailing comma (line 23) "*://www.linkedin.com/*", Remove trailing comma (line 62) "https://api.mixpanel.com/*", Remove trailing comma (line 82) Other JSON parsers might be more forgiving, but I would suggest fixing those issues, then trying again.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Prevent taking a screenshot on iPhone and iPad
This question has been asked many times. It is not possible to prevent screenshots and screen recording on iOS. And yet, ScreenShieldKit seems to have achieved this! That suggests, at the least, that it is very difficult, and there is no "simple" coding solution. I suggest that you investigate ScreenShieldKit, and see if their pricing model suits your needs (depending on how important this feature is, for your app).
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to How do I fill in CXProviderDelegate in SwiftUI?
As @OOPer says, a CXProviderDelegate must be an NSObject, so it can't be a SwiftUI View. It would have to be a class, perhaps as (part of) your Model or ViewModel (assuming that you are using MVVM). Remember that SwiftUI is only providing the user interface for your app. SwiftUI is not doing all the behind-the-scenes processing!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Does Apple allow non-https protocol to be used in the Associated Domains?
http is still allowed (for now?), but you have to jump through some hoops with your Info.plist keys: NSAppTransportSecurity NSAllowsArbitraryLoads NSExceptionDomains NSThirdPartyExceptionAllowsInsecureHTTPLoads Have you got all of those?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Can iOS kill an application in background in battery saving mode
Yes. iOS will kill off backgrounded apps, based on various factors (which are hard to predict). You could expect this to happen more agressivily in low power mode.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to XCode for Windows PC
Does that answer your question, @mdbeard?
Replies
Boosts
Views
Activity
Dec ’21
Reply to Safari Extension: Please make sure your manifest.json file contains valid syntax
Did you make any progress on this, @Daniyaldehleh?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21