Create a springboard as the main view

Is there any sample code or an easy way to implement the application with its first view, similar to Springboard?

What I'm looking for is just a view with the main icons, which, after the tab on the icon, tell the view manager to click on the view associated with the selected icon.

This in itself is not so difficult off-course (just putting the images in the view), but is there a simple way to implement all the additional functions (for example, moving the icons around (the beginning of “vibrating” when you click on them), several pages, etc. .d.). The Facebook app seems to have this. I probably shouldn’t record it myself, but it would be nice if there was something out of the box to give the App a little more iPhone feel.

Thanks in advance!

+3
source share
3 answers

Facebook uses the Three20 library for its user interface. The specific view used for the SpringBoard interface is known as TTLauncherView.

+4

( , 20 , ), , : myLauncher on Github

+2

You can use UICollectionView to create this

Look at this example

https://github.com/tularovbeslan/Springboard

enter image description here

0
source

Source: https://habr.com/ru/post/1791476/


All Articles