[Solved] How do I convert a parameterised enum/ enum with associated values from Swift to Objective-C? [closed]
[ad_1] Let me explain your code for you: NSString *isoFormat = ISO8601DateFormatType; (assigns string ISO8601 to isoFormat) NSString *dateFormat = (isoFormat != nil) ? isoFormat : ISO8601DateFormatType; (isoFormat is never nil so the condition is always true. If it were false, we would again assign string ISO8601). NSDateFormatter *formatter = … (we get some formatter, … Read more