Post

Replies

Boosts

Views

Activity

Reply to How to Change Picker Text Color In SwiftUI
I can see that both .tint & .accentColor works for the default picker. But is there any way to change the color of a .pickerStyle(.wheel)? I've tried a lot of scenarios. It only seems to work with .automatic. Picker ("", selection: $countDowns) { ForEach(countDowns, id: \.self) { countDown in Text(" \(countDown)") // .accentColor(.blue) } } .accentColor(.blue) // .tint(.blue) // .pickerStyle(.wheel) .font(.largeTitle) .scaleEffect(2.0)
Sep ’24
Reply to landscape support
I asked about this in a WWDC24 lab. I didn't get any real recognition that this is a big accessibility problem. They did recommend NOT creating 2 layouts that shift completely when going from portrait to landscape as that would be very disorienting. SwiftUI by design is meant to flow naturally when shifting orientation. Essentially the answer was: work on constraining and spacing things to fit as best as you can. The impression I get is: If you have to lock your app to one orientation or the other that's probably fine. There are some very highly regarded apps that do that.
Jun ’24
Reply to I can't log-in to the forums from the forums page!
I just went round and round trying to log in where it would tell me to create an account and when I tried type the user name that I know had worked it said that user name was taken. Then I realized the screen it's popping up is always defaulting to another apple ID - not my dev account one. So you have to click on the little "Log in with another Apple ID". That got me logged in. Maybe this will help you?
Jun ’24
Reply to Face ID on the next Mac coming
I just got a M1 iMac and something unexpected happened with the touchID key on the keyboard. I think it is a GREAT way to lock the computer quickly. You just tap it on the edge or with an unmapped finger and bang it's locked and it goes to sleep instantly. I think I'd miss this a lot of they went to faceID!
Jun ’21
Reply to Xcode update problems
Yes - downloading Xcode can be tough. I've had it "stall" many times and when I try again and it will finish - eventually. One theory is the MacAppStore is messing up: If you are not running macOS Big Sur then you can only download up to Xcode 12.4 - but since you mentioned a blue ring, that suggests you are trying to download via the MAS which I don't think will easily offer you anything but the latest. A great site to keep track of this is on https://xcodereleases.com. Older releases of Xcode can be found here: https://developer.apple.com/download/more/?=xcode I think this requires a paid dev account. Another theory is that the space left number is approximated by temporary usage and you really did run out of space for some stage of the download. Offline TM backups and things can take away space temporarily. I think there are stages of the download where it expands the download file and authenticates the release. I've seen interrupted internet access stall Xcode downloads. Really this is a constant battle - I'd love to hear more discussion of how others deal with this.
Jun ’21