Email or username:

Password:

Forgot your password?
sam henri gold

iOS dev question: What built-in collection do you use for quickly mocking up a list of data? Normally I use `UIFont.familyNames` but wondering if there’s something else y’all prefer.

The context being I want to quickly create a list and I don’t care what the data is. It just needs to be something long enough to scroll.

1 comment
Rizwan :ivory_elephant:

@samhenrigold (1…100).map { $0 }

But now that I know about family name from UIFont I might switch over.

Go Up