I have for example this code:
var myAlert: UIAlertController = UIAlertController(title: "Title text ",
message: "message",
preferredStyle: UIAlertControllerStyle. )When I press the dot after UIAlertControllerStyle I would expect the options of this enumerator type. Instead I get a lot of other suggestions (also). Is there a quick way to only show the available options of this enum type?
NB: I have experience with Visual Studio. I'm quite new to Xcode (yet ...).