Closed kostiakoval closed 7 years ago
New feature quest :)
ids of what, everything?
All the ids (ViewControllers, Cells, Segue) from storyboards but well structured I'm not sure how the code should be structured, Maybe all ids should be in 1 top level or nested into a related ViewConttroller.
The main idea is that I wan't just ids in a simple file, with out any extra functionality.
struct Storyboards {
struct Main {
enum ViewControllersIds: String {
case Login
case Done
}
enum CellsIds: String {
case OneCell
case TwoCell
}
}
}
Or maybe nested structure
struct Storyboards {
struct Main {
enum ViewControllersIds: String {
case Login
case Done
enum CellsIds: String {
case OneCell
case TwoCell
}
}
}
}
It's more like an array than enum, isn't it ?
closing issue because of lack of activity, reopen if needed
I want to get only ids without any extra functionality. It would be awesome if there would be some option for that.
Here is what I want