Post

Replies

Boosts

Views

Activity

Comment on Need help converting JSON objects from double & floats to strings
You will find a good tutorial here: https ://sarunw. com/posts/how-to-specify-fractional-digits-for-formatted-number-string-in-swift/
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’21
Comment on Textfield background image not working on iOS 14
In IB, in Attributes inspector, when you select the TextField, you have a BorderStyle segmentedControl, with 4 choices : None, Line, Bezel, Round Anything different than round means either None, Line or Bezel.
Replies
Boosts
Views
Activity
Jun ’21
Comment on Capturing the image read by QRCode
Thanks, I'll try it. Not sure it is possible in the view for auto capture of QR Code.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on How to access viewController components in model (MVC)
Using a model is not an obligation, but it is a good practice. For simple things, some have the model "embedded" inside VC. It works well, but that is not as clean a design.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Obsolescence and the new way of consuming
You cannot delete a post… Obsolete Mac… in what sense is it obsolete ? Isn't it capable of doing the same things it did 5 years ago (keeping the same versions of OS an apps) ? If so, it is not obsolete, there are just some more powerful solutions now.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Can not ForEach Int Array in Dictionary
This should work: ForEach(notedNumbers[key]!.indices But it is crash prone to force unwrap from dict
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on How can I handle NavigationLink for HStack row
Did not succeed to connect to what ? Where is it in code ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Adding border colour to page control applies background colour to page control
What is your question here ?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Xcode playground keeps saying running my playground but dosen't run any code I type in it just keeps saying that
So, maybe you have a problem in your playground file. You can either try to find where or you could attach the full playground so that we can check if we encounter the same problem.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Watching list is empty, not receiving emails about new comments
I tried to answer, no way, post is deleted. Seems to be the case with very post on the forum feedback. Even impossible to create a new post…
Replies
Boosts
Views
Activity
Jun ’21
Comment on Deleting Forum Posts
You cannot delete… too bad. But in some cases you cannot post ! even worse.
Replies
Boosts
Views
Activity
Jun ’21
Comment on ProgressView Error
Cannot replicate the error. Which version of Xcode ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on ProgressView Error
Try replacing with;                     ProgressView(" value: 5.0, total: 15)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on Index out of range, SwiftUI
What is the logic for using valori array for both week, month and year ? If you want to avoid crash, test that index is valid: .onTapGesture { withAnimation{ if i < valori.count { valori[i] += 100 } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’21
Comment on What does it mean by "Automatic Inflection" and "Detail Scenes" in SwiftUI part of Platform state of the Union?
Do Detail Scenes deal with Master/Detail ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’21