Post

Replies

Boosts

Views

Activity

Reply to Can I remove a language from localization?
I would advise the following: mention clearly in the section for "new release information" the language you suppressed. maybe you could also remove the most concerned countries from list of available countries. you could also issue one more release with all languages and then, if running in the language you intend to suppress warn user that this is the last version to support this language.
Mar ’21
Reply to Make UISwitch accessible
A solution is to subclass UISwitch. @IBDesignable class LargeSwitch: UISwitch { @IBInspectable var scale : CGFloat = 1.2 override func draw(_ rect: CGRect) { self.transform = CGAffineTransform(scaleX: scale, y: scale) } } You will find some more details here: https://developer.apple.com/forums/thread/658572
Topic: UI Frameworks SubTopic: UIKit Tags:
Mar ’21
Reply to Push notification on CarPlay in my American car
You should registerForPushNotifications() or now registerForRemoteNotifications() before returning Have a look at this tutorial: https :// www.raywenderlich . com/ 11395893-push-notifications-tutorial-getting-started Not sure it is a problem with american car. Did you try a european ? 😉 Don't forget to close the thread if that works.
Topic: App & System Services SubTopic: General Tags:
Mar ’21
Reply to Table view is not shown in the simulator
Have you set constraints to position the tableView ? You should, it may just be offscreen. Have you populated the tableView with content ? You need to define the required dataSource and delegate func for the tableView. And make sure delegate and datasource are properly set. Otherwise, an empty tableView shows nothing. To better see what happens, select tableView in IB ; in Attributes Inspector, set its view bg color to red. And check if you see something.
Mar ’21
Reply to Storyboard: How do I change the iOS version to see layout changes?
They used to be simple scroll wheels  If you select the picker in IB and look at Attributes Inspector, you can select Wheels for preferred style instead of Automatic. That will give you the style you were accustomed with. To select another iOS version in simulator, just select the appropriate simulator. In Xcode, I think you have to return to an older version of Xcode.
Mar ’21