Skip to content

Instantly share code, notes, and snippets.

View Ilesh's full-sized avatar
:octocat:
Learn | Build | Test | 🚀

Ilesh Panchal Ilesh

:octocat:
Learn | Build | Test | 🚀
View GitHub Profile
//
// GoogleLogin.swift
//
//
// Created by Ilesh's on 31/12/18.
// Copyright © 2018 Ilesh's. All rights reserved.
//
// HERE I HAVE IMPLEMENTED
@Ilesh
Ilesh / ArrayDeepCopy.swift
Created September 2, 2019 10:48 — forked from sohayb/ArrayDeepCopy.swift
Array deep copy in Swift
//Protocal that copyable class should conform
protocol Copying {
init(original: Self)
}
//Concrete class extension
extension Copying {
func copy() -> Self {
return Self.init(original: self)
}
@Ilesh
Ilesh / IPButton.swift
Created October 7, 2019 10:50
Custom buttons for layout entire project with manage using tag.
//
// IPButton.swift
//
// Created by SAS
// Copyright © 2018 MAC7. All rights reserved.
//
import UIKit
//
// IPTapableLabel.swift
//
//
// Created by Ilesh's 2018 on 07/10/19.
// Copyright © 2019 Ilesh's. All rights reserved.
//
import Foundation
@Ilesh
Ilesh / IPFacebookLogin.swift
Created November 5, 2019 11:34
Login with facebook manager class. Its help to login and share with facebook.
//
// IPFacebookLogin.swift
//
//
// Created by Ilesh's 2018 on 05/11/18.
// Copyright © 2018. All rights reserved.
//
import UIKit
import FacebookLogin
@Ilesh
Ilesh / IPGoogleLogin.swift
Last active February 17, 2020 09:43
Google sign in, Get calendar events and much more.
//
//
// IPGoogleLogin.swift
//
//
// Created by Ilesh's on 31/12/18.
// Copyright © 2018 Ilesh's. All rights reserved.
//
@Ilesh
Ilesh / IPDocumentPicker.swift
Created November 5, 2019 11:42
iCloud UIDocumentPickerDelegate with specific files like doc, documents, text and PDF.
//
// IPDocumentPicker.swift
//
//
// Created by Ilesh on 22/11/18.
// Copyright © 2018. All rights reserved.
//
import UIKit
import MobileCoreServices
@Ilesh
Ilesh / TimerButton.swift
Created November 5, 2019 11:47
Store custom property in UIButton, it will help to hold more values.
//
// TimerButton.swift
//
//
// Created by Ilesh on 10/01/19.
// Copyright © 2019. All rights reserved.
//
import Foundation
import UIKit
@Ilesh
Ilesh / VideoRecorder.swift
Created November 20, 2019 09:55
Video recorder with audio controller.
//
// VideoRecorder.swift
// VideoRecorder
//
// Created by Ilesh's 2018 on 20/11/19.
// Copyright © 2019 Ilesh's. All rights reserved.
//
import UIKit
import AVFoundation