Skip to content

Instantly share code, notes, and snippets.

@mono0926
Created October 18, 2016 10:02
Show Gist options
  • Save mono0926/1a2d9e4668d6ab7905e3749b5425eb78 to your computer and use it in GitHub Desktop.
Save mono0926/1a2d9e4668d6ab7905e3749b5425eb78 to your computer and use it in GitHub Desktop.
String(describing:)で挙動怪しそうなのと、rawValue上書きはあまり行儀良く無さそうというのを無視すれば、これありかも( ´・‿・`) #swift #CodePiece
extension String {
var capitalizingFirstLetter: String {
return String(characters.prefix(1)).capitalized + String(characters.dropFirst())
}
}
enum MyEnum: String {
case fooBar
var rawValue: String { return String(describing: self).capitalizingFirstLetter }
}
MyEnum.fooBar.rawValue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment