How to recreate a Pulse-like interface?

I was wondering how to make an image display through a spreadsheet, like the Pulse app on an iPhone. I used UIScrollView, but it did not help. It displayed only images in the form of a beautiful array, but you could not create an event or click on the image.

What is the best way to create Pulse as an application to display images and header information in an array style?

+4
source share
4 answers

use the Ray Wenderlich tutorial about this topic

textbook

+3
source

Ray Wenderlich , , ( ), . .

, , .

+3

UITableView , UIImageView s. , , , Twitter. , , UIScrollView ( , ). , - , .

+1
source

This is a UITableView with each row containing a UITableView that rotates 90 °. The cells for the UITableView on each row are user views, which are probably either subclasses of UIImageView or just UIView.

+1
source

All Articles