Skip to content

Instantly share code, notes, and snippets.

View yogeshpatel's full-sized avatar

Yogesh Patel yogeshpatel

  • IBM
  • Bangalore
View GitHub Profile
@yogeshpatel
yogeshpatel / runtime-class.m
Created December 3, 2015 21:26 — forked from mikeash/runtime-class.m
Creating a usable class purely at runtime using the Objective-C runtime APIs.
// clang -fobjc-arc -framework Foundation runtime-class.m
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
@interface Person : NSObject
- (id)initWithFirstName: (NSString *)firstName lastName: (NSString *)lastName age: (NSUInteger)age;