Posts

Post marked as solved
1 Replies
This is the expected result (available at first menu app opening) This is at the second opening This is with style .menuBarExtraStyle(.menu)
Post not yet marked as solved
6 Replies
To set UIDatePicker.preferredDatePickerStyle to .wheels is necessary indeed but not enough: In order to show the picker you have to set the frame as well, something like this snippet: if #available(iOS 13.4, *) {             picker.frame = CGRect(x: 0, y: 0, width: self.view.bounds.width, height: 250.0)             picker.frame = CGRect(x: 0, y: 0, width: self.view.bounds.width, height: 250.0)             picker.preferredDatePickerStyle = .wheels             picker.preferredDatePickerStyle = .wheels } Hope it helps 😉
Post not yet marked as solved
6 Replies
Same issue here and no luck setting UIDatePicker.preferredDatePickerStyle to .wheels Any solution (except substitute the textfields with UIDatePicker)? I'll try to workaround but some choices are made even for the layout.
Post not yet marked as solved
5 Replies
Hi @andre07, thank you for answering.Actually, I did:I added the capability in both targets and so the group.Then, in my dev account, added the group.