Create your own NSNotification paradigm for passing specifically typed data
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
//
// IMMotionUpdateNotification.h
//
#import <Foundation/Foundation.h>
#import "IMMotionData.h"
/**
Create superclass to strict type the object delivered
*/
@interface IMMotionUpdateNotification : NSNotification
- (IMMotionData *)object; //< Our payload.
@end
/**
Following NSNotifications header file...
*/
@interface IMMotionUpdateNotification (NSNotificationCreation)
+ (IMMotionUpdateNotification *)notificationWithName:(NSString *)aName object:(IMMotionData *)anObject;
+ (IMMotionUpdateNotification *)notificationWithName:(NSString *)aName object:(IMMotionData *)anObject userInfo:(NSDictionary *)aUserInfo;
@end
//
// IMMotionUpdateNotification.m
//
#import "IMMotionUpdateNotification.h"
@implementation IMMotionUpdateNotification
- (IMMotionData *)object
{
return [super object];
}
@end
@implementation IMMotionUpdateNotification (NSNotificationCreation)
+ (IMMotionUpdateNotification *)notificationWithName:(NSString *)aName object:(IMMotionData *)anObject
{
return [[self superclass] notificationWithName:aName object:anObject];
}
+ (IMMotionUpdateNotification *)notificationWithName:(NSString *)aName object:(IMMotionData *)anObject userInfo:(NSDictionary *)aUserInfo
{
return [[self superclass] notificationWithName:aName object:anObject userInfo:aUserInfo];
}
@end
//
// IMMotionUpdateNotification.h
//
#import <Foundation/Foundation.h>
#import "IMMotionData.h"
/**
Create superclass to strict type the object delivered
*/
@interface IMMotionUpdateNotification : NSNotification
- (IMMotionData *)object; //< Our payload.
@end
//
// IMMotionUpdateNotification.m
//
#import "IMMotionUpdateNotification.h"
@implementation IMMotionUpdateNotification
- (IMMotionData *)object
{
return [super object];
}
@end
//
// Usage
//
[IMMotionUpdateNotification notificationWithName:@"IMDidUpdateMotionData" object:[latestMotionData copy]]; |


