You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1008 B

//
// MOBFCore.h
// MOBFoundation
//
// Created by fenghj on 15/8/31.
// Copyright (c) 2015年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
*
*/
extern NSString *const MOBFApplicationCrashNotif;
/**
*
*/
@interface MOBFNotificationCenter : NSObject
/**
*
*
* @param observer
* @param selector
* @param name
* @param object
*/
+ (void)addObserver:(NSObject *)observer
selector:(SEL)selector
name:(NSString *)name
object:(id)object;
/**
*
*
* @param observer
*/
+ (void)removeObserver:(NSObject *)observer;
/**
*
*
* @param observer
* @param name
* @param object
*/
+ (void)removeObserver:(NSObject *)observer
name:(NSString *)name
object:(id)object;
@end