Create 3D carousel using TGLParallaxCarousel

in #utopian-io6 years ago (edited)

What Will I Learn?

  • You will learn How to program in swift programming language.
  • You will learn How to use cocoapods in swift project.
  • You will learn How to use cocoapods files and their delegates in swift project.
  • You will learn How to create 3D carousel using TGLParallaxCarousel.

Requirements

  • Mac OS
  • Xcode
  • Basic knowledge of programming in Xcode and swift language
  • Basic knowledge of using of cocoapods

Difficulty

  • Basic

Tutorial Contents

Hello and welcome to all. Today we will explore a swift library TGLParallaxCarousel. By using this library in our swift project we will make a image carousel with 3d effect. So let's start our tutorial.

  • First of all create a new project in your Xcode.
    Screen Shot 2018-03-28 at 6.49.39 PM.png

  • Now we need to install 'TGLParallaxCarousel pod' in our project, so that we can use pod supporting files to create our carousel. But we can't install pod directly in our project, first we need to create a podfile in our project, so that we can write pod name in that file to install pod.

  • To create podfile in our project, we use command pod init. So, Open Terminal and navigate to the directory that contains your project by using the cd command like this:

cd /some drive/Folder/your project folder
  • Now after reaching to root directory of the project, write the pod init command in your terminal and press enter. This command creates a podfile.rb file in your project directory.
pod init
  • Now, we need to add our pod in podfile.rb file. We can do this by two ways first is by terminal and second by editing file manually from finder. We will use the second one method. So go to your project directory using finder and open podfile.rb file in any editor. Now add pod 'TGLParallaxCarousel' in your podfile like and save the file :-
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target '3dCarousel' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for 3dCarousel

   pod 'TGLParallaxCarousel'
  
end

  • Now we need to run command pod install to install dependencies of pod in our project. So head back to our project root directory in terminal and run the command :-
pod install
  • After some time the pod will install in your project and you will see some text in green colour in your terminal like this :-
[!] Please close any current Xcode sessions and use `your project name.xcworkspace` for this project from now on.

So close the xcode and open .xcworkspace file to start programming for our project.

  • Now we successfully added cocoapod in our project and now we need to start making carousel. So head to main.storyboard and place a UIView object in your view controller and set it as subclass of TGLParallaxCarousel like this :-

Screen Shot 2018-03-28 at 7.19.18 PM.png

  • Now we will create a IBoutlet of this view in our view controller file like this :-
import UIKit

class ViewController: UIViewController {

    @IBOutlet var carouselView: TGLParallaxCarousel!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}
  • After making outlet you will get error saying use of unresolved identifier. You are getting this error because we didn't import TGLParallaxCarousel class in our view controller file. So add import TGLParallaxCarousel under import UIKit in your view controller file.

  • Now we will set some properties and delegates of carousel in our view controller viewDidLoad method. As we are making 3d carousel, so we will set carousel type to three dimensional and also give some margin to carousel items to give a feel of 3d effect. So write this code in your view controller viewDidLoad method :-

override func viewDidLoad() {
super.viewDidLoad()
     self.carouselView.delegate = self
     self.carouselView.margin = 10
     self.carouselView.type = .threeDimensional
}

Now we will use TGLParallaxCarousel delegate methods to set number of items in carousel, item for row at index. There are also other methods with different functionality but i am using only two delegate methods for now to not make tutorial too lengthy. To use delegate methods, first add TGLParallaxCarouselDelegate in your view controller class like this :-

import UIKit
import TGLParallaxCarousel

class ViewController: UIViewController, TGLParallaxCarouselDelegate {

    @IBOutlet var carouselView: TGLParallaxCarousel!
    override func viewDidLoad() {
        super.viewDidLoad()
        self.carouselView.delegate = self
        self.carouselView.margin = 10
        self.carouselView.type = .threeDimensional
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}
  • Now finally, we can use delegate methods of TGLParallaxCarousel in our code. So add the two methods in your view controller like this :-
class ViewController: UIViewController, TGLParallaxCarouselDelegate {

    @IBOutlet var carouselView: TGLParallaxCarousel!
    override func viewDidLoad() {
        super.viewDidLoad()
        self.carouselView.delegate = self
        self.carouselView.margin = 10
        self.carouselView.type = .threeDimensional
    }

    func numberOfItemsInCarouselView(_ carouselView: TGLParallaxCarousel) -> Int {
        return 10
    }
    
    func carouselView(_ carouselView: TGLParallaxCarousel, itemForRowAtIndex index: Int) -> TGLParallaxCarouselItem {
        let demoView = UIView
        demoView.frame = CGRect(x: 0, y: 0, width: 200, height: 180)
       demoView.backgroundColor = UIcolor.black
        return demoView, number: index)
    }
}

What we did in above code is we add 10 items in our carousel in numberOfItemsInCarouselView method and we also set a uiview with some height and width for every item in itemForRowAtIndex.

  • Now run your app and you will see a beautiful carousel with 3d effect.

Thanks for reading the tutorial, if you had any doubt regarding this comment in post. I will help you.



Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Coin Marketplace

STEEM 0.17
TRX 0.16
JST 0.030
BTC 59758.56
ETH 2523.42
USDT 1.00
SBD 2.47