So I'm new to iOS development and I really only rely on storyboards and youtube tutorials for iPhone app development. (Im using Xcode)
But for this project I need to create a list of names (around 200). When a name is tapped a record will appear (displaying the date of birth, height, nationality and possibly even a profile picture). I think it is called an array of records.
I was also wondering if I should be using storyboards
or xibs
for this particular project. I don't want to have to create 200 different view controllers for each person which is why I'm trying to implement an array.
Could someone give me a starting point with code and the basics to which I should proceed because I dont know where I should start.