Skip to content

Instantly share code, notes, and snippets.

View flexaddicted's full-sized avatar

Lorenzo B. flexaddicted

View GitHub Profile
@flexaddicted
flexaddicted / introrx.md
Created November 5, 2015 16:51 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@flexaddicted
flexaddicted / MGNavigationTransitioningDelegate.h
Last active August 29, 2015 14:28 — forked from ArtFeel/MGNavigationTransitioningDelegate.h
Simple sliding transitioning for navigation controller mimics pre iOS7 push/pop animations.All you need, is simply set delegate for you navigation controller: self.navigationController.delegate = self.navigationTransitioningDelegate;NavigationController does not retain delegate, so you should hold it. Note: this code is free (http://unlicense.org)
//
// MGNavigationTransitioningDelegate
//
// Created by Philip Vasilchenko on 27.11.13.
//
#import <UIKit/UIKit.h>
@interface MGNavigationTransitioningDelegate : NSObject <UINavigationControllerDelegate>