This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ZoomOutAndBounceVC.swift | |
// Cartoonize Image | |
// | |
// Created by Coder ACJHP on 15.03.2019. | |
// Copyright © 2019 Onur Işık. All rights reserved. | |
// | |
// ******************************************************************** | |
// Be careful and don't use AutoLayout Constraints for animating view * | |
// This animations works with AutoResizing only! * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ClockView.swift | |
// UICAnalogClock | |
// | |
// Created by Coder ACJHP on 20.03.2019. | |
// Copyright © 2019 Onur Işık. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UICCircularProgressBar.swift | |
// UICCircularDownloadProgressBar | |
// | |
// Created by Coder ACJHP on 1.04.2019. | |
// Copyright © 2019 Onur Işık. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// UICTabbar | |
// | |
// Created by Coder ACJHP on 2.04.2019. | |
// Copyright © 2019 Onur Işık. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UIView { | |
func fillContainer() { | |
anchor(top: superview?.topAnchor, leading: superview?.leadingAnchor, | |
bottom: superview?.bottomAnchor, trailing: superview?.trailingAnchor) | |
} | |
// When you use this function don't pass "size" parameter into "anchor" function | |
func anchorSize(to view: UIView) { | |
widthAnchor.constraint(equalTo: view.widthAnchor).isActive = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Created by Hitendra Solanki on 04/17/2018. Updated by Coder ACJHP | |
// Copyright (c) 2018 Hitendra Solanki. All rights reserved. | |
// | |
import UIKit | |
public class UICBalanceSlider: UIControl { | |
enum HSProgressType { | |
case left(progress: Double) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ChartBarViewController.swift | |
// | |
// Created by Onur Işık on 12.04.2019. | |
// Copyright © 2019 Onur Işık. All rights reserved. | |
// | |
import UIKit | |
class ChartBarViewController: UIViewController { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// EmitterProvider.swift | |
// | |
// Created by Coder ACJHP on 15.04.2019. | |
// Copyright © 2019 FitBest Bilgi Teknolojileri. All rights reserved. | |
// | |
import UIKit | |
class EmitterProvider { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UICAwesomeSlider.swift | |
// | |
// Created by Coder ACJHP on 15.04.2019. | |
// Copyright © 2019 FitBest Bilgi Teknolojileri. All rights reserved. | |
// | |
import UIKit | |
class UICValueLabeledSlider: UISlider { |