Skip to content

Instantly share code, notes, and snippets.

View Chavenay's full-sized avatar

Frédéric AUDON Chavenay

View GitHub Profile
@mdippery
mdippery / book.m
Created October 28, 2010 18:11
An example of using @dynamic properties in Objective-C
#import <Foundation/Foundation.h>
@interface Book : NSObject
{
NSMutableDictionary *data;
}
@property (retain) NSString *title;
@property (retain) NSString *author;
@end