UICollectionView load Sections Vertically - objective-c

I have a collection View and i am using Custom CollectionViewLayout for scrolling in both direction. I want to merge the first row items like in the below image,
Please help me to do this. Thanks in Advance.

Follow to this tutorial: UICollectionView Custom Layout Tutorial

Related

how to create UISlider type view automatically switching to number of pages in Objective-C?

I have already tried with Horizontal Scroll but not like the picture uploaded. I Need to create that type of view .I have no idea kindly help thanks in advance

Splitting a view controller horizontally

i want to split a view controller in 2 parts horizontally maintaining an aspect ratio.
Is there any way to this?
you can take reference from MGSplitViewController which can be replaced with SplitViewController. I hope you will get an idea about it.

Scroll inside UITableViewCell

I was looking at this project SKSTableView and its really great.
What I needed here is that when I expand a cell I need to be able to scroll only inside of that expanded cell, not a whole UITableViewController. Can someone help me?
Thank you very much.

UICollectionView with Decoration

i need to change the UICollectionView Decoration like this image
http://cs3-3.4pda.to/2433011.jpg
need tutorial please
i found it in this tutorial
https://www.cocoacontrols.com/controls/icarousel
thanks

Using a UIPanGesture to drag a tableView/scrollView

I suppose the best way to describe the control, that I'm trying to make, is a tableView that could be dragged left and right and then scrolled up and down. There's no tabs, or anything else that the user touches just table view and it's cells.
I've read the documentation on UIScrollView and UITableView and there wasn't much in there :( Then again there might have been stuff I've missed
Any help would be greatly appreciated.
Have you tried adding the UITableView as a sub view of a UIScrollView (which can scroll only in horizontal direction) ? Take a look at https://github.com/raweng/StackScrollView