Post

Replies

Boosts

Views

Activity

Reply to Protocol Not Working
Ok, let close it. It does not print the segue.identifier it prints the delegate is nil and then it just crashes again. It does not matter what I change my segue.identifier too. But you did not show (unless I missed something), where is this print statement.
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’21
Reply to Adding stacks to a stack view programmatically
What I would do : create UIViews (not stackView) in each, add a label and a stepper set the constraints as needed add these UIViews in the stackView Note: You could subclass UIView, (call it LabelStepperView for instance) to have a label and a stepper, and have code to update label when stepper changes. That would give a more structured code.
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’21
Reply to Published app has wrong language
Where exactly is it listed as english app ? On which country appstore do you look at it ? Italian appstore ? What is the development language of your app ? Maybe english by default. To see this: select the Project (blue icon on the top of Xcode file browser) Select Project (not Targets) Select Info tab Look in Localization part
Feb ’21
Reply to NSWindowController make full screen back ground blurry
What you can probably do is create a window which is full screen size, give it a semi transparent background and declare it as non sizeable. You will have then to keep your other windows on top. That would give the impression that desktop is blurred (until you quit your app or switch to another one of course). But I don't think it is possible to blur the screen background itself. May I ask: why do you want such an intrusive and, at first sight, not user friendly, feature ?
Topic: UI Frameworks SubTopic: AppKit Tags:
Feb ’21
Reply to how to do for embedded files update for device in Xcode 12 Swift 5
What are those installation files ? Are they user documentation ? If so, you can include a pdf file in your app resources (or may be leave it available on your web site). If it is a configuration file, why not include a json ? I think this would not cause any problem. And it would be easy to use it directly in the app. Note: I advise you to explain clearly in the app submission (in the reviewer information section) what those files are, what they are used for… That will create trust on reviewer's side.
Feb ’21