I'm making a third party license page for my app.
So i have a UITableView
when each cell is the library name and when tapping it opens a new UIViewController
with the licence text.
So what would be the best and efficient way to save and load an array of long strings?
static let MIT = ""
or
enum licence: String {
MIT = ""
}
or
let licences = ["MIT": "", ]
or
loading from file
Or any other suggestion?
Thanks