Skip to content

Instantly share code, notes, and snippets.

@chris9753
chris9753 / Custom Gender
Created January 29, 2015 19:20
Custom Gender Selection(Parse)
//
// SignUpViewController.swift
// E-gnite
//
// Created by Chris Da silva on 2015-01-27.
// Copyright (c) 2015 Chris Da silva. All rights reserved.
//
import UIKit
@chris9753
chris9753 / Tinder Swipe(IOS8)
Created January 27, 2015 00:23
Tinder Swipe Effect For IOS8 (SWIFT)
//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