Skip to content

Instantly share code, notes, and snippets.

@grp
grp / gist:3074235
Created July 9, 2012 04:40 — forked from drunknbass/gist:3074015
Swizzletastic
#include <objc/runtime.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "SwizzleMyNizzleProtocol.h"
IMP SwizzleMethod(Class _class, SEL sel, IMP imp) {
if (_class == nil || sel == NULL || imp == NULL)
return NULL;