Post

Replies

Boosts

Views

Activity

Reply to new UIDatePicker as inputView
If you use sizeToFit on the datePicker and sets the preferredDatePickerStyle as wheels it would look like it did in iOS 13. like so: let datePicker = UIDatePicker() datePicker.datePickerMode = .time datePicker.locale = .current if #available(iOS 14, *) { datePicker.preferredDatePickerStyle = .wheels datePicker.sizeToFit() } textField.inputView = datePicker
Jul ’20
Reply to App icon change only working when run after delay
I have the same problem. I can change the icon of the app itself but i can't change the notification icon or the settings icon. is there another function to change the other icons or is this an issue with the icon names? Do i need to provide more photos for the notifications and settings?my icon names are: -Black@1x.png-Black@2x.png-Black@3x.png-White@1x.png-White@2x.png-White@3x.png
Jun ’20