SwitchCaseGenerator
SwitchCaseGenerator copied to clipboard
An Xcode Source Editor Extension that generates a swift switch case statement based on selected enum cases
Results
2
SwitchCaseGenerator issues
Sort by
recently updated
recently updated
newest added
Add to support Swift 5
Say I have the following enum ``` enum UserField { case id(Int) case username(String) case vision(Int, Int) case height(feet: Int, inches: Int) } ``` Then the following switch should be...