Skip to content

Instantly share code, notes, and snippets.

View JesusMartinAlonso's full-sized avatar
👣
Bit by Bit

JesusMartinAlonso

👣
Bit by Bit
View GitHub Profile
@JesusMartinAlonso
JesusMartinAlonso / FadeScrollView.swift
Last active June 25, 2019 08:28 — forked from luismachado/FadeScrollView.swift
Custom UIScrollView with fade effect
//
// FadeScrollView.swift
//
// Created by Jesus Martin Alonso on 24/06/2019.
// Inspired by https://gist.github.com/luismachado/1423427b4c60021d71a8772e4dabc140
// Copyright © 2017 Luis Machado. All rights reserved.
import UIKit
/// UIScrollView subclass that fades the top/bottom edges depending of the scroll position
@JesusMartinAlonso
JesusMartinAlonso / OCLint.sh
Created November 21, 2016 15:00 — forked from ManWithBear/OCLint.sh
OCLint script for xcode
if [ -f ~/.bash_profile ]; then
source ~/.bash_profile
fi
hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi