Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontal Scroll View iOS

I wanted to ask if it is possible to use the UIScrollView horizontally. I have an app that plays different radio stations, each station is represented by an UIButton. How can i place i.e 3 buttons in a row so when i scroll another three UIButtons appear?

Below you can find how the design is supposed to look like.

Thank you very much!

enter image description here

like image 409
Granit Avatar asked Jul 13 '26 15:07

Granit


1 Answers

It works exactly the same as vertically. Just set the scrollview.contentSize.width greater than scrollview.frame.size.width.

like image 96
yoeriboven Avatar answered Jul 15 '26 06:07

yoeriboven