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 How can I remove duplicates from a Picker
Make an array of the unique enum descriptions, and use that in your ForEach. You could write a method to calculate this... ...or just do it manually in your Race enum e.g. (in Race enum) static var uniqueValues: [Race] { [.Ainur, .Balrog, .Dwarf, .Eagle] } then (in Picker) ForEach (Race.uniqueValues, id: \.self, content: { race in
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21