I was wondering what is the best approach for creating a UIview with multiple icons that go to different view controllers. I have seen an open source launcher code for creating such a view but I rather learn on what is the best practice for creating one from scratch? Is it a big image with code measuring the touch location? Are the buttons put dynamically? Is it a table with multiple cells in a row? ….
The Yelp launcher is also following the same pattern
Facebook Launcher
Yelp Launcher
Thanks,
Ross
Position the buttons dynamically. With each button being a seperate instance of
UIButton. As Richard J. Ross III suggested in a comment, you could for example put the various buttons in aUIScrollView.