This file contains hidden or 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
/* ----- GENERAL ARCHITECTURE---> | |
not valid | |
<-respond with error | |
| | |
| | |
| | |
| | |
+------------------------------------------------------------------------+ | |
| FFMPEG | | |
This file contains hidden or 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
//Custom Theme test | |
// Colors | |
// ------------------------------- | |
$custom: #057b6c !default; | |
// Buttons | |
// ------------------------------- | |
$button-custom-bg: $custom !default; |
This file contains hidden or 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
// | |
// TinderViewController.swift | |
// E-gnite | |
// | |
// Created by Chris Da silva on 2015-01-29. | |
// Copyright (c) 2015 Chris Da silva. All rights reserved. | |
// | |
import UIKit |
This file contains hidden or 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
// | |
// SignUpViewController.swift | |
// E-gnite | |
// | |
// Created by Chris Da silva on 2015-01-27. | |
// Copyright (c) 2015 Chris Da silva. All rights reserved. | |
// | |
import UIKit |
This file contains hidden or 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
//Global Variables | |
var alphaX : CGFloat = 0 | |
var orgState : CGPoint = CGPoint() | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
//Adding the Label | |
var label: UILabel = UILabel(frame: CGRectMake(self.view.bounds.width/2 - 100 , self.view.bounds.height/2 - 50, 200, 100)) | |
orgState = label.center | |
label.text = "Drag Me!" | |
label.textAlignment = NSTextAlignment.Center |