I am going to get Data for my application through Internet Object by Object and i want that each time the data has been updated or any object is added the current class that is using that class it gets notified that the data has been Updated. Currently i have reached here
#import <Foundation/Foundation.h>
@interface MSMutableArray : NSMutableArray
- (void) addObjectInArray:(id)anObject;
@end
then the Implementation class
#import "MSMutableArray.h"
@implementation MSMutableArray
- (void) addObjectInArray:(id)anObject
{
[self addObject:anObject];
// Notify the current Class that an element has been added????
}
@end